fast_nav 0.3.0 fast_nav: ^0.3.0 copied to clipboard
Navigate without context. Call navigation methods from your business logic.
Navigate without context
Features #
fast_nav supports the following navigation methods:
- pop
- canPop
- push
- pushReplacement
- pushAndRemoveUntil
- pushAndRemoveAll
- pushNamed
- pushReplacementNamed
- pushNamedAndRemoveUntil
- pushNamedAndRemoveAll
Convenience features:
- Nested navigation with a NestedNavigator class for simple setup
Getting started #
Register a GlobalKey with FastNav and your MaterialApp
import 'package:fast_nav/fast_nav.dart';
import 'package:flutter/material.dart';
void example() {
MaterialApp(
navigatorKey: FastNav.init(),
);
}
Usage #
import 'package:fast_nav/fast_nav.dart';
import 'package:flutter/material.dart';
void example() {
FastNav.push(const Text('New page'));
}
import 'package:fast_nav/fast_nav.dart';
import 'package:flutter/material.dart';
void example() {
// ...
NestedNavigator(
name: 'nestedNavigator',
home: const Text('home'),
);
// ...
FastNav.push(const Text('New page'), navigatorName: 'nestedNavigator');
}
Additional information #
See fast_ui for more information