Skip to content

Instantly share code, notes, and snippets.

@bizz84
bizz84 / go_router_nested_navigation.dart
Created March 17, 2022 10:17
Example of GoRouter nested navigation using BottomNavigationBar
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
void main() => runApp(App());
class App extends StatelessWidget {
App({Key? key}) : super(key: key);
static const title = 'GoRouter Example: Nested Navigation';