diff --git a/flutter/lib/desktop/pages/connection_page.dart b/flutter/lib/desktop/pages/connection_page.dart index 2e6d79b2f..627cd23e9 100644 --- a/flutter/lib/desktop/pages/connection_page.dart +++ b/flutter/lib/desktop/pages/connection_page.dart @@ -63,6 +63,7 @@ class _ConnectionPageState extends State scrollController: _scrollController, child: CustomScrollView( controller: _scrollController, + physics: NeverScrollableScrollPhysics(), slivers: [ SliverList( delegate: SliverChildListDelegate([ @@ -72,7 +73,7 @@ class _ConnectionPageState extends State ], ).marginOnly(top: 22), SizedBox(height: 12), - Divider(), + Divider().paddingOnly(right: 12), ])), SliverFillRemaining( hasScrollBody: false, @@ -97,10 +98,10 @@ class _ConnectionPageState extends State menuPadding: EdgeInsets.only(left: 12.0, right: 3.0), ), ], - ), + ).paddingOnly(right: 12.0), ) ], - ).marginSymmetric(horizontal: 12.0), + ).paddingOnly(left: 12.0), ), ), const Divider(),