You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have spent a lot of time trying to implement bottom nav bar like it was in first example. In basic app it works well but in more complex app there are some problems.
For example I have an app with theme selector. routerDelegateHome is only needed to open our HomeScreen with BottomNavigationBarWidget.
final _routerDelegateHome =BeamerDelegate(
locationBuilder:RoutesLocationBuilder(
routes: {
'*': (context, state, data) =>HomeScreen(),
},
),
);
Widgetbuild(BuildContext context) {
returnMaterialApp.router(
scrollBehavior:CustomScrollBehavior(),
debugShowCheckedModeBanner:false,
routeInformationParser:BeamerParser(),
routerDelegate: _routerDelegateHome,
backButtonDispatcher:BeamerBackButtonDispatcher(delegate: _routerDelegateHome),
// we can use here any state management approach, result will be the same
themeMode:EasyDynamicTheme.of(context).themeMode,
theme:ThemeData(
useMaterial3:true,
colorScheme: lightScheme,),
/* dark theme settings */
darkTheme:ThemeData(
useMaterial3:true,
colorScheme: darkScheme,));
}
Beaming to the first screen with not null data then beaming to the second (now we have main screen, first screen, second screen in out stack) and finally beaming back (to the first screen) causes npe exception in out location. The reason is that
BeamBackButtonDispatcher with _routerDelegateHome is used and it hasn't data copied in his state.
We can fix it by adding to HomeScreen Beamer dispatcher: backButtonDispatcher: BeamerBackButtonDispatcher(delegate: _routerDelegate, alwaysBeamBack: false)
But there is still a problem with our beamers. In my case it was related to changing theme. We lose current screen state after MaterialApp state change. And after that the behaviour from the 1 paragraph appears again. I solved this by setting updateParent to false inside Beamer.
Describe the solution you'd like
In example:
Add backButtonDispatcher for Beamer which is used to navigate throw NavigationBar
??? Add updateParent:false when ParentBeamer is only used for navigation to HomeScreen.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have spent a lot of time trying to implement bottom nav bar like it was in first example. In basic app it works well but in more complex app there are some problems.
For example I have an app with theme selector. routerDelegateHome is only needed to open our HomeScreen with BottomNavigationBarWidget.
HomeScreen:
BeamBackButtonDispatcher with _routerDelegateHome is used and it hasn't data copied in his state.
backButtonDispatcher: BeamerBackButtonDispatcher(delegate: _routerDelegate, alwaysBeamBack: false)
Describe the solution you'd like
In example:
The text was updated successfully, but these errors were encountered: