diff --git a/lib/module/env/env_detail_page.dart b/lib/module/env/env_detail_page.dart index 5998614..85e2e98 100644 --- a/lib/module/env/env_detail_page.dart +++ b/lib/module/env/env_detail_page.dart @@ -150,7 +150,7 @@ class _TaskDetailPageState extends ConsumerState { Container( margin: const EdgeInsets.symmetric( horizontal: 15, - vertical: 10, + vertical: 15, ), padding: const EdgeInsets.only( top: 10, @@ -196,9 +196,6 @@ class _TaskDetailPageState extends ConsumerState { ], ), ), - const SizedBox( - height: 30, - ), SizedBox( width: MediaQuery.of(context).size.width - 80, child: CupertinoButton( @@ -217,7 +214,7 @@ class _TaskDetailPageState extends ConsumerState { }), ), const SizedBox( - height: 30, + height: 15, ), ], ), diff --git a/lib/module/others/other_page.dart b/lib/module/others/other_page.dart index 7dc079e..767d150 100644 --- a/lib/module/others/other_page.dart +++ b/lib/module/others/other_page.dart @@ -26,7 +26,7 @@ class _OtherPageState extends ConsumerState { Container( margin: const EdgeInsets.symmetric( horizontal: 15, - vertical: 15, + vertical: 30, ), decoration: BoxDecoration( color: ref.watch(themeProvider).themeColor.settingBgColor(), @@ -176,7 +176,6 @@ class _OtherPageState extends ConsumerState { Container( margin: const EdgeInsets.symmetric( horizontal: 15, - vertical: 15, ), decoration: BoxDecoration( color: ref.watch(themeProvider).themeColor.settingBgColor(), @@ -218,6 +217,9 @@ class _OtherPageState extends ConsumerState { ], ), ), + const SizedBox( + height: 30, + ), Center( child: SizedBox( width: MediaQuery.of(context).size.width - 40, diff --git a/lib/module/task/task_detail/task_detail_page.dart b/lib/module/task/task_detail/task_detail_page.dart index 3303bd0..d1bf77f 100644 --- a/lib/module/task/task_detail/task_detail_page.dart +++ b/lib/module/task/task_detail/task_detail_page.dart @@ -219,7 +219,7 @@ class _TaskDetailPageState extends ConsumerState { Container( margin: const EdgeInsets.symmetric( horizontal: 15, - vertical: 10, + vertical: 15, ), padding: const EdgeInsets.only( top: 10, @@ -290,9 +290,6 @@ class _TaskDetailPageState extends ConsumerState { ], ), ), - const SizedBox( - height: 30, - ), SizedBox( width: MediaQuery.of(context).size.width - 80, child: CupertinoButton( @@ -311,7 +308,7 @@ class _TaskDetailPageState extends ConsumerState { }), ), const SizedBox( - height: 30, + height: 15, ), ], ),