flutter_ytnavigator 0.0.3 copy "flutter_ytnavigator: ^0.0.3" to clipboard
flutter_ytnavigator: ^0.0.3 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()],
)