Sets minimum width for toolbar content
This commit is contained in:
parent
e59678648d
commit
98732ec904
1 changed files with 5 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue