fix: custom client, settings button (#10974)

Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
fufesou
2025-03-01 19:43:01 +08:00
committed by GitHub
parent e17ab74040
commit bfbf00f18c

View File

@@ -133,6 +133,8 @@ class _DesktopHomePageState extends State<DesktopHomePage>
width: isIncomingOnly ? 280.0 : 200.0, width: isIncomingOnly ? 280.0 : 200.0,
color: Theme.of(context).colorScheme.background, color: Theme.of(context).colorScheme.background,
child: Stack( child: Stack(
children: [
Column(
children: [ children: [
SingleChildScrollView( SingleChildScrollView(
controller: _leftPaneScrollController, controller: _leftPaneScrollController,
@@ -141,6 +143,9 @@ class _DesktopHomePageState extends State<DesktopHomePage>
children: children, children: children,
), ),
), ),
Expanded(child: Container())
],
),
if (isOutgoingOnly) if (isOutgoingOnly)
Positioned( Positioned(
bottom: 6, bottom: 6,