navigator_plus 1.1.0 copy "navigator_plus: ^1.1.0" to clipboard
navigator_plus: ^1.1.0 copied to clipboard

This package helps to manage the navigate between screens in an elegant and easy way.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:navigator_plus_example/fisrt_screen.dart';
import 'package:navigator_plus_example/routes.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        routes: Routes.routes(context),
        home: const FirstScreen());
  }
}
8
likes
140
pub points
62%
popularity

Publisher

verified publisherdatadirr.com

This package helps to manage the navigate between screens in an elegant and easy way.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on navigator_plus