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