diff --git a/lib/ui/views/app_selector/app_selector_view.dart b/lib/ui/views/app_selector/app_selector_view.dart index 7877a226fa..26eae3204e 100644 --- a/lib/ui/views/app_selector/app_selector_view.dart +++ b/lib/ui/views/app_selector/app_selector_view.dart @@ -54,7 +54,7 @@ class _AppSelectorViewState extends State { onPressed: () => Navigator.of(context).pop(), ), bottom: PreferredSize( - preferredSize: const Size.fromHeight(64.0), + preferredSize: const Size.fromHeight(66.0), child: Padding( padding: const EdgeInsets.symmetric( vertical: 8.0, diff --git a/lib/ui/views/patches_selector/patches_selector_view.dart b/lib/ui/views/patches_selector/patches_selector_view.dart index 2ad050d048..26766f4e4c 100644 --- a/lib/ui/views/patches_selector/patches_selector_view.dart +++ b/lib/ui/views/patches_selector/patches_selector_view.dart @@ -81,7 +81,7 @@ class _PatchesSelectorViewState extends State { child: Container( margin: const EdgeInsets.only(top: 12, bottom: 12), padding: - const EdgeInsets.symmetric(horizontal: 6, vertical: 6), + const EdgeInsets.symmetric(horizontal: 6, vertical: 6), decoration: BoxDecoration( color: Theme.of(context) .colorScheme @@ -99,7 +99,7 @@ class _PatchesSelectorViewState extends State { ), CustomPopupMenu( onSelected: (value) => - {model.onMenuSelection(value, context)}, + {model.onMenuSelection(value, context)}, children: { 0: I18nText( 'patchesSelectorView.loadPatchesSelection', @@ -114,7 +114,7 @@ class _PatchesSelectorViewState extends State { ), ], bottom: PreferredSize( - preferredSize: const Size.fromHeight(64.0), + preferredSize: const Size.fromHeight(66.0), child: Padding( padding: const EdgeInsets.symmetric( vertical: 8.0,