Browse Source

Made new project dialog scrollable

This is useful in case of small screens
master
Kenneth Bruen 2 years ago
parent
commit
aea18c3262
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 2
      lib/dialogs/new_project.dart

2
lib/dialogs/new_project.dart

@ -21,6 +21,7 @@ class NewProjectDialog extends HookWidget {
}, [newDialogNameController.text]); }, [newDialogNameController.text]);
return Dialog( return Dialog(
child: SingleChildScrollView(
child: Padding( child: Padding(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
child: IntrinsicWidth( child: IntrinsicWidth(
@ -106,6 +107,7 @@ class NewProjectDialog extends HookWidget {
), ),
), ),
), ),
),
); );
} }
} }

Loading…
Cancel
Save