From 1945b0fe05a59883861bdd8c04fd37d141b45dce Mon Sep 17 00:00:00 2001 From: 0x7c01 <45112245+0x7c01@users.noreply.github.com> Date: Tue, 28 Feb 2023 14:33:50 +0800 Subject: [PATCH] fix: homeMenuResizer position when menu is drawer. (#1896) --- .../lib/workspace/presentation/home/home_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart b/frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart index 46f4f92cd2..57ca5182aa 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/home/home_screen.dart @@ -244,7 +244,7 @@ class _HomeScreenState extends State { animate: true) .animate(layout.animDuration, Curves.easeOut), homeMenuResizer - .positioned(left: layout.homePageLOffset - 5) + .positioned(left: layout.menuWidth - 5) .animate(layout.animDuration, Curves.easeOut), ], );