Skip to content

Instantly share code, notes, and snippets.

@serhii-lypko
serhii-lypko / go_router_example.dart
Created April 25, 2024 18:15 — forked from onatcipli/go_router_example.dart
go_router_example.dart
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
main() {
CustomNavigationHelper.instance;
runApp(const App());
}
class App extends StatelessWidget {
const App({Key? key}) : super(key: key);