Skip to content
New issue

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

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # 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
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants