Made new project dialog scrollable

This is useful in case of small screens
This commit is contained in:
Kenneth Bruen 2022-06-19 07:48:24 +03:00
parent 012de37b4a
commit aea18c3262
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1

View file

@ -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 {
), ),
), ),
), ),
),
); );
} }
} }