mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Fix pages navigation issue
This commit is contained in:
parent
1309e7ad3a
commit
c65558ef6c
@ -87,7 +87,9 @@ abstract class MainController extends State<MainRoute> {
|
||||
|
||||
/// Open user page
|
||||
void openUserPage(int userID) => pushPage(PageInfo(
|
||||
type: PageType.USER_PAGE, child: UserPageScreen(userID: userID)));
|
||||
type: PageType.USER_PAGE,
|
||||
child: UserPageScreen(userID: userID),
|
||||
id: userID));
|
||||
|
||||
void openUserAccessDeniedPage(int userID) =>
|
||||
pushPage(PageInfo(child: UserAccessDeniedScreen(userID: userID)));
|
||||
|
@ -22,7 +22,10 @@ class PageInfo {
|
||||
final bool hideNavBar;
|
||||
final bool canShowAsDialog;
|
||||
|
||||
const PageInfo({
|
||||
/// Unique identification of this child
|
||||
final key = UniqueKey();
|
||||
|
||||
PageInfo({
|
||||
this.type = PageType.OTHER_PAGE,
|
||||
@required this.child,
|
||||
this.id,
|
||||
|
@ -73,9 +73,10 @@ class _TabletRouteState extends MainController {
|
||||
);
|
||||
|
||||
Widget _buildRightPane() => Container(
|
||||
width: MediaQuery.of(context).size.width - _SideBarSize,
|
||||
child: currentPage.child,
|
||||
);
|
||||
key: currentPage.key,
|
||||
width: MediaQuery.of(context).size.width - _SideBarSize,
|
||||
child: currentPage.child,
|
||||
);
|
||||
|
||||
@override
|
||||
void pushPage(PageInfo page) {
|
||||
|
Loading…
Reference in New Issue
Block a user