Fixed visual scrolling bug

This commit is contained in:
JHubi1 2024-06-08 20:07:11 +02:00
parent edd92955e9
commit 60601edce8
No known key found for this signature in database
GPG Key ID: 7BF82570CBBBD050
2 changed files with 5 additions and 5 deletions

View File

@ -166,10 +166,10 @@ class _ScreenSettingsAboutState extends State<ScreenSettingsAbout> {
mode: LaunchMode.inAppBrowserView, mode: LaunchMode.inAppBrowserView,
Uri.parse( Uri.parse(
repoUrl.substring(0, repoUrl.lastIndexOf('/')))); repoUrl.substring(0, repoUrl.lastIndexOf('/'))));
}) }),
const SizedBox(height: 16)
]), ]),
), )
const SizedBox(height: 16)
]))), ]))),
); );
} }

View File

@ -250,9 +250,9 @@ class _ScreenSettingsInterfaceState extends State<ScreenSettingsInterface> {
}); });
}); });
}), }),
]),
),
const SizedBox(height: 16) const SizedBox(height: 16)
]),
)
]))), ]))),
); );
} }