Fix color picker dialog overflow (#1251)

pull/1259/head
George Tian 2 years ago committed by GitHub
parent 6399cca1d8
commit 205be05e9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      lib/src/widgets/toolbar/color_button.dart

@ -170,9 +170,9 @@ class _ColorButtonState extends State<ColorButton> {
child: Text('OK'.i18n)),
],
backgroundColor: Theme.of(context).canvasColor,
content: SizedBox(
height: 400,
content: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Row(
children: [
@ -192,8 +192,7 @@ class _ColorButtonState extends State<ColorButton> {
child: Text('Color'.i18n)),
],
),
Expanded(
child: Column(children: [
Column(children: [
if (pickerType == 'material')
MaterialPicker(
pickerColor: selectedColor,
@ -253,7 +252,7 @@ class _ColorButtonState extends State<ColorButton> {
}),
],
),
]))
])
],
),
));

Loading…
Cancel
Save