From bfbf00f18cb711ad1ec7da92c0a561a79ec833c2 Mon Sep 17 00:00:00 2001 From: fufesou <13586388+fufesou@users.noreply.github.com> Date: Sat, 1 Mar 2025 19:43:01 +0800 Subject: [PATCH] fix: custom client, settings button (#10974) Signed-off-by: fufesou --- .../lib/desktop/pages/desktop_home_page.dart | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/flutter/lib/desktop/pages/desktop_home_page.dart b/flutter/lib/desktop/pages/desktop_home_page.dart index ba724eed5..94e325758 100644 --- a/flutter/lib/desktop/pages/desktop_home_page.dart +++ b/flutter/lib/desktop/pages/desktop_home_page.dart @@ -134,12 +134,17 @@ class _DesktopHomePageState extends State color: Theme.of(context).colorScheme.background, child: Stack( children: [ - SingleChildScrollView( - controller: _leftPaneScrollController, - child: Column( - key: _childKey, - children: children, - ), + Column( + children: [ + SingleChildScrollView( + controller: _leftPaneScrollController, + child: Column( + key: _childKey, + children: children, + ), + ), + Expanded(child: Container()) + ], ), if (isOutgoingOnly) Positioned(