universal_router 0.3.3 copy "universal_router: ^0.3.3" to clipboard
universal_router: ^0.3.3 copied to clipboard

This package is a implementation of Navigator 2.0. Supported Router Table concept.

example/main.dart

import 'package:flutter/material.dart';
import 'package:universal_router/route.dart';

void main() {
  RouteInstance(
      routePath: '', title: 'Home', pageBuilder: (_, __) async => const Home());

  runApp(MyApp());
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) => TextButton(
      onPressed: () => {UniversalRouter.changePath('somewhere')},
      child: const Text('go to somewhere else'));
}

class MyApp extends StatelessWidget {
  // final universalRouter = UniversalRouter.initialize();

  MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      routerDelegate: UniversalRouter.routerDelegate,
      routeInformationProvider: UniversalRouter.routeInformationProvider,
      routeInformationParser: UniversalRouter.routerInformationParser,
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
    );
  }
}
2
likes
90
pub points
0%
popularity

Publisher

verified publishercullen.ml

This package is a implementation of Navigator 2.0. Supported Router Table concept.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

cullen_utilities, flutter, logger

More

Packages that depend on universal_router