route_navigator 1.4.0 copy "route_navigator: ^1.4.0" to clipboard
route_navigator: ^1.4.0 copied to clipboard

discontinuedreplaced by: navigator_plus

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:route_navigator_example/fisrt_screen.dart';
import 'package:route_navigator_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());
  }
}
6
likes
150
points
31
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on route_navigator