|
|
@ -27,6 +27,16 @@ class NewProjectDialog extends HookWidget { |
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch, |
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch, |
|
|
|
mainAxisSize: MainAxisSize.min, |
|
|
|
mainAxisSize: MainAxisSize.min, |
|
|
|
children: [ |
|
|
|
children: [ |
|
|
|
|
|
|
|
Align( |
|
|
|
|
|
|
|
alignment: Alignment.centerRight, |
|
|
|
|
|
|
|
child: IconButton( |
|
|
|
|
|
|
|
icon: const Icon(Icons.close), |
|
|
|
|
|
|
|
tooltip: 'Close', |
|
|
|
|
|
|
|
onPressed: () { |
|
|
|
|
|
|
|
Navigator.of(context).pop(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
Center( |
|
|
|
Center( |
|
|
|
child: Padding( |
|
|
|
child: Padding( |
|
|
|
padding: const EdgeInsets.all(8.0), |
|
|
|
padding: const EdgeInsets.all(8.0), |
|
|
|