You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
604 B
Dart
26 lines
604 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:penguin_flutter_sample/routes/app_router.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Penguin',
|
|
initialRoute: AppRouter.initialRoute,
|
|
navigatorKey: AppRouter.navigatorKey,
|
|
onGenerateRoute: AppRouter.generateRoute,
|
|
locale: const Locale(
|
|
'En',
|
|
),
|
|
debugShowCheckedModeBanner: false,
|
|
);
|
|
}
|
|
}
|