fluent_navigation 0.0.5 copy "fluent_navigation: ^0.0.5" to clipboard
fluent_navigation: ^0.0.5 copied to clipboard

outdated

Package that provides a simple way to navigate within your app

example/lib/main.dart

import 'package:fluent_navigation_example/example_module.dart';
import 'package:flutter/material.dart';
import 'package:fluent_navigation/fluent_navigation.dart';

void main() async {
  await Fluent.build([
    NavigationModule(),
    ExampleModule(),
  ]);

  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    final config = Fluent.get<NavigationApi>().getConfig();

    return MaterialApp.router(
      title: "Fluent Navigation Demo",
      routerConfig: config,
    );
  }
}
1
likes
0
points
205
downloads

Publisher

unverified uploader

Weekly Downloads

Package that provides a simple way to navigate within your app

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, fluent_navigation_api, fluent_sdk, flutter, go_router

More

Packages that depend on fluent_navigation