From 6bf1d9c19a3772c244f14c9aee3c021a72b9ad40 Mon Sep 17 00:00:00 2001 From: appflowy Date: Sun, 5 Jun 2022 22:28:15 +0800 Subject: [PATCH] chore: fix grid scollbar not visible after screen size changed --- .../app_flowy/lib/workspace/presentation/home/home_screen.dart | 2 -- .../app_flowy/lib/workspace/presentation/home/home_stack.dart | 2 -- 2 files changed, 4 deletions(-) diff --git a/frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart b/frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart index 86fa9fab79..7e6d4abba2 100644 --- a/frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart +++ b/frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart @@ -18,7 +18,6 @@ import 'home_stack.dart'; import 'menu/menu.dart'; class HomeScreen extends StatefulWidget { - static GlobalKey scaffoldKey = GlobalKey(); final UserProfile user; final CurrentWorkspaceSetting workspaceSetting; const HomeScreen(this.user, this.workspaceSetting, {Key? key}) : super(key: key); @@ -52,7 +51,6 @@ class _HomeScreenState extends State { ), ], child: Scaffold( - key: HomeScreen.scaffoldKey, body: BlocListener( listenWhen: (p, c) => p.unauthorized != c.unauthorized, listener: (context, state) { diff --git a/frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart b/frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart index c9c210ab35..07bd99deb1 100644 --- a/frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart +++ b/frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart @@ -21,8 +21,6 @@ import 'package:flowy_infra/notifier.dart'; typedef NavigationCallback = void Function(String id); class HomeStack extends StatelessWidget { - static GlobalKey scaffoldKey = GlobalKey(); - // final Size size; const HomeStack({Key? key}) : super(key: key); @override