From 60601edce8ea4accf6bc8cc50a1e98b6c90a46bc Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Sat, 8 Jun 2024 20:07:11 +0200 Subject: [PATCH] Fixed visual scrolling bug --- lib/settings/about.dart | 6 +++--- lib/settings/interface.dart | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/settings/about.dart b/lib/settings/about.dart index 67ab3b1..cd94a9b 100644 --- a/lib/settings/about.dart +++ b/lib/settings/about.dart @@ -166,10 +166,10 @@ class _ScreenSettingsAboutState extends State { mode: LaunchMode.inAppBrowserView, Uri.parse( repoUrl.substring(0, repoUrl.lastIndexOf('/')))); - }) + }), + const SizedBox(height: 16) ]), - ), - const SizedBox(height: 16) + ) ]))), ); } diff --git a/lib/settings/interface.dart b/lib/settings/interface.dart index 89357b0..214883f 100644 --- a/lib/settings/interface.dart +++ b/lib/settings/interface.dart @@ -250,9 +250,9 @@ class _ScreenSettingsInterfaceState extends State { }); }); }), - ]), - ), const SizedBox(height: 16) + ]), + ) ]))), ); }