Compare commits

...

2 Commits

Author SHA1 Message Date
69f27b2e69 Create management portal in Flutter #39
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
2025-03-14 19:08:44 -05:00
7cbf1a3937 Create management portal in Flutter #39 2025-03-14 19:06:25 -05:00

View File

@ -56,6 +56,7 @@ class _AddMountScreenState extends State<AddMountScreen> {
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
children: [ children: [
Card( Card(
margin: EdgeInsets.all(0.0),
child: Padding( child: Padding(
padding: const EdgeInsets.all(constants.padding), padding: const EdgeInsets.all(constants.padding),
child: Row( child: Row(
@ -88,6 +89,7 @@ class _AddMountScreenState extends State<AddMountScreen> {
const SizedBox(height: constants.padding), const SizedBox(height: constants.padding),
if (_mountType.isNotEmpty) if (_mountType.isNotEmpty)
Card( Card(
margin: EdgeInsets.all(0.0),
child: Padding( child: Padding(
padding: const EdgeInsets.all(constants.padding), padding: const EdgeInsets.all(constants.padding),
child: Column( child: Column(
@ -110,9 +112,11 @@ class _AddMountScreenState extends State<AddMountScreen> {
), ),
), ),
), ),
if (_mount != null) const SizedBox(height: constants.padding),
if (_mount != null) if (_mount != null)
Expanded( Expanded(
child: Card( child: Card(
margin: EdgeInsets.all(0.0),
child: Padding( child: Padding(
padding: const EdgeInsets.all(constants.padding), padding: const EdgeInsets.all(constants.padding),
child: MountSettingsWidget( child: MountSettingsWidget(
@ -124,6 +128,7 @@ class _AddMountScreenState extends State<AddMountScreen> {
), ),
), ),
), ),
if (_mount != null) const SizedBox(height: constants.padding),
if (_mount != null) if (_mount != null)
Builder( Builder(
builder: (context) { builder: (context) {