💄 Drawer won't slide to open if page can go back
💄 Fix album loading indicator
This commit is contained in:
@ -65,6 +65,9 @@ class AppRootScaffold extends StatelessWidget {
|
||||
NavigationProvider.kShowBottomNavScreen.contains(routeName)
|
||||
? ResponsiveBreakpoints.of(context).smallerOrEqualTo(MOBILE)
|
||||
: false;
|
||||
final isPopable = !NavigationProvider.kAllDestination
|
||||
.map((ele) => ele.screen)
|
||||
.contains(routeName);
|
||||
|
||||
final innerWidget = isCollapseDrawer
|
||||
? body
|
||||
@ -97,6 +100,7 @@ class AppRootScaffold extends StatelessWidget {
|
||||
],
|
||||
),
|
||||
drawer: !isExpandDrawer ? AppNavigationDrawer() : null,
|
||||
drawerEdgeDragWidth: isPopable ? 0 : null,
|
||||
bottomNavigationBar:
|
||||
isShowBottomNavigation ? AppBottomNavigationBar() : null,
|
||||
),
|
||||
|
Reference in New Issue
Block a user