custom_navigator 0.3.0 custom_navigator: ^0.3.0 copied to clipboard
A flutter package that makes it easy to create your own navigator anywhere in the widget tree.
import 'package:flutter/material.dart';
import 'package:custom_navigator/custom_navigator.dart';
void main() => runApp(MyApp());
//give a navigator key to [MaterialApp] if you want to use the default navigation
//anywhere in your app eg: line 15 & line 93
GlobalKey<NavigatorState> mainNavigatorKey = GlobalKey<NavigatorState>();
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
navigatorKey: mainNavigatorKey,
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Page _page = Page('Page 0');
int _currentIndex = 0;
// Custom navigator takes a global key if you want to access the
// navigator from outside it's widget tree subtree
GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: BottomNavigationBar(
items: _items,
onTap: (index) {
// here we used the navigator key to pop the stack to get back to our
// main page
navigatorKey.currentState.maybePop();
setState(() => _page = Page('Page $index'));
_currentIndex = index;
},
currentIndex: _currentIndex,
),
body: CustomNavigator(
navigatorKey: navigatorKey,
home: _page,
//Specify your page route [PageRoutes.materialPageRoute] or [PageRoutes.cupertinoPageRoute]
pageRoute: PageRoutes.materialPageRoute,
),
);
}
final _items = [
BottomNavigationBarItem(icon: Icon(Icons.home), title: Text('home')),
BottomNavigationBarItem(icon: Icon(Icons.event), title: Text('events')),
BottomNavigationBarItem(
icon: Icon(Icons.save_alt), title: Text('downloads')),
];
}
class Page extends StatelessWidget {
final String title;
const Page(this.title) : assert(title != null);
@override
Widget build(BuildContext context) {
final text = Text(title);
return Container(
child: Center(
child: FlatButton(
onPressed: () => _openDetailsPage(context), child: text)),
);
}
//Use the navigator like you usually do with .of(context) method
_openDetailsPage(BuildContext context) => Navigator.of(context)
.push(MaterialPageRoute(builder: (context) => DetailsPage(title)));
// _openDetailsPage(BuildContext context) => mainNavigatorKey.currentState.push(MaterialPageRoute(builder: (context) => DetailsPage(title)));
}
class DetailsPage extends StatelessWidget {
final String title;
const DetailsPage(this.title) : assert(title != null);
@override
Widget build(BuildContext context) {
final text = Text('Details of $title');
return Container(
child: Center(child: text),
);
}
}