navigator_plus 3.0.0 copy "navigator_plus: ^3.0.0" to clipboard
navigator_plus: ^3.0.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({super.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(),
    );
  }
}
9
likes
150
points
31
downloads

Documentation

API reference

Publisher

verified publisherdatadirr.com

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on navigator_plus

Packages that implement navigator_plus