mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-19 10:33:44 +02:00
16 lines
488 B
Dart
16 lines
488 B
Dart
// import 'package:example/apps/go_router/app.dart';
|
|
// import 'package:example/apps/navigator/app.dart';
|
|
import 'package:example/apps/go_router/app.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:intl/date_symbol_data_local.dart';
|
|
|
|
void main() {
|
|
initializeDateFormatting();
|
|
|
|
// Uncomment any, but only one, of these lines to run the example with specific navigation.
|
|
|
|
// runApp(const WidgetApp());
|
|
// runApp(const NavigatorApp());
|
|
runApp(const GoRouterApp());
|
|
}
|