Skip to content

Instantly share code, notes, and snippets.

View onatcipli's full-sized avatar
🏝️
Working from home (limited availability)

Onat Çipli onatcipli

🏝️
Working from home (limited availability)
View GitHub Profile
@onatcipli
onatcipli / go_router_example.dart
Last active May 21, 2024 08:19
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);