Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰 Long text UI overflow in ContentDialog even with SingleChildScrollView #242

Closed
mgenware opened this issue Mar 25, 2022 · 0 comments 路 Fixed by #246
Closed

馃悰 Long text UI overflow in ContentDialog even with SingleChildScrollView #242

mgenware opened this issue Mar 25, 2022 · 0 comments 路 Fixed by #246
Labels
bug Something isn't working

Comments

@mgenware
Copy link

Describe the bug
Long text UI overflow in ContentDialog.

To Reproduce
Steps to reproduce the behavior:

// With SingleChildScrollView
      return ContentDialog(
        title: 'title',
        content: SingleChildScrollView(child: Text('long text')),
        actions: /* ... */
      );

// Or without SingleChildScrollView
      return ContentDialog(
        title: 'title',
        content: child: Text('long text'),
        actions: /* ... */
      );

Expected behavior
Scroll bar appears.

Screenshots
UI overflow.

image

@bdlukaa bdlukaa added the bug Something isn't working label Mar 25, 2022
@bdlukaa bdlukaa mentioned this issue Mar 25, 2022
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants