Created
May 20, 2021 10:07
-
-
Save mosolovsa/a158f8e9281d7407ff44b89b4c45044c to your computer and use it in GitHub Desktop.
Custom flutter navigation widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_hooks/flutter_hooks.dart'; | |
void main() { | |
runApp(StartupApplication()); | |
} | |
enum Page { screenDashboard, screenProfile, screenSearch } | |
extension on Page { | |
String get route => describeEnum(this); | |
} | |
class StartupApplication extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'BackStack Support App', | |
home: MainBodyApp(), | |
); | |
} | |
} | |
class MainBodyApp extends HookWidget { | |
final Map<Page, Widget> _fragments = { | |
Page.screenDashboard: DashboardPage(), | |
Page.screenProfile: UserProfilePage(), | |
Page.screenSearch: SearchPage(), | |
}; | |
@override | |
Widget build(BuildContext context) { | |
final navigatorKey = GlobalObjectKey<NavigatorState>(context); | |
return WillPopScope( | |
onWillPop: () async { | |
if (navigatorKey.currentState.canPop()) { | |
navigatorKey.currentState.pop(); | |
return false; | |
} | |
return true; | |
}, | |
child: Scaffold( | |
appBar: AppBar( | |
title: Text('BackStack Screen'), | |
), | |
body: Container( | |
child: Column( | |
children: <Widget>[ | |
Expanded( | |
child: Navigator( | |
key: navigatorKey, | |
initialRoute: Page.screenDashboard.route, | |
onGenerateRoute: (settings) { | |
final pageName = settings.name; | |
final page = _fragments.keys.firstWhere( | |
(element) => describeEnum(element) == pageName); | |
return MaterialPageRoute(settings: settings, | |
builder: (context) => _fragments[page]); | |
}, | |
), | |
), | |
Container( | |
width: double.infinity, | |
height: 50.0, | |
padding: const EdgeInsets.symmetric(horizontal: 15.0), | |
color: Colors.indigo[400], | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.spaceBetween, | |
crossAxisAlignment: CrossAxisAlignment.center, | |
children: <Widget>[ | |
RaisedButton( | |
onPressed: () => navigatorKey.currentState | |
.pushNamed(Page.screenDashboard.route), | |
child: Text('Dashboard'), | |
), | |
RaisedButton( | |
onPressed: () => navigatorKey.currentState | |
.pushNamed(Page.screenProfile.route), | |
child: Text('Profile'), | |
), | |
RaisedButton( | |
onPressed: () => navigatorKey.currentState | |
.pushNamed(Page.screenSearch.route), | |
child: Text('Search'), | |
), | |
], | |
), | |
), | |
], | |
), | |
), | |
), | |
); | |
} | |
} | |
class UserProfilePage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
alignment: Alignment.center, | |
child: Text(' screenProfile ...'), | |
); | |
} | |
} | |
class DashboardPage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
alignment: Alignment.center, | |
child: Text(' screenDashboard ...'), | |
); | |
} | |
} | |
class SearchPage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
alignment: Alignment.center, | |
child: Text(' screenSearch ...'), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment