diff --git a/lib/ui/home_widget.dart b/lib/ui/home_widget.dart index e0e5498f0..7060d7d19 100644 --- a/lib/ui/home_widget.dart +++ b/lib/ui/home_widget.dart @@ -443,6 +443,7 @@ class _HomeWidgetState extends State { ), ), backgroundColor: colorScheme.backgroundElevated, + enableDrag: false, barrierColor: backdropMutedDark, context: context, builder: (BuildContext context) { diff --git a/lib/ui/notification/update/change_log_page.dart b/lib/ui/notification/update/change_log_page.dart index 5b6e0bd33..6156c0894 100644 --- a/lib/ui/notification/update/change_log_page.dart +++ b/lib/ui/notification/update/change_log_page.dart @@ -41,17 +41,18 @@ class _ChangeLogPageState extends State { const SizedBox( height: 36, ), - SafeArea( - child: Container( - alignment: Alignment.centerLeft, - child: const Padding( - padding: EdgeInsets.symmetric(horizontal: 16.0), - child: TitleBarTitleWidget( - title: "What's new", - ), + Container( + alignment: Alignment.centerLeft, + child: const Padding( + padding: EdgeInsets.symmetric(horizontal: 16.0), + child: TitleBarTitleWidget( + title: "What's new", ), ), ), + const SizedBox( + height: 24, + ), Expanded(child: _getChangeLog()), const DividerWidget( dividerType: DividerType.solid, @@ -184,15 +185,14 @@ class _ChangeLogPageState extends State { thumbVisibility: true, thickness: 2.0, child: ListView.builder( + physics: const BouncingScrollPhysics(), itemBuilder: (context, index) { return Padding( padding: const EdgeInsets.only(right: 16.0), child: ChangeLogEntryWidget(entry: items[index]), ); }, - physics: const ClampingScrollPhysics(), itemCount: items.length, - shrinkWrap: true, ), ), );