Merge pull request #552 from pangeachat/min-width-toolbar

Sets minimum width for toolbar content
This commit is contained in:
ggurdin 2024-08-05 10:05:07 -04:00 committed by GitHub
commit 3f6583dd8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -435,7 +435,11 @@ class MessageToolbarState extends State<MessageToolbar> {
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Flexible(
Container(
constraints: const BoxConstraints(
minWidth: 300,
maxHeight: 228,
),
child: SingleChildScrollView(
child: AnimatedSize(
duration: FluffyThemes.animationDuration,