flutter_ytnavigator 0.0.5
flutter_ytnavigator: ^0.0.5 copied to clipboard
Navigator Util.
The interface navigation tools used in the YT team.
Getting Started #
Add this to your package's pubspec.yaml file:
dependencies:
flutter_ytnavigator: 0.0.1
Usage #
Push Page #
NavigatorUtil.push(
context,
const HomePage(),
);
Add NavigatorObserver #
When the interface changes, print the interface name in the log window.
MaterialApp(
...
navigatorObservers: [NavigatorObserver()],
)