34 lines
1.0 KiB
Dart
34 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:ta_running/screens/splash_screen.dart';
|
|
import 'package:intl/date_symbol_data_local.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await Firebase.initializeApp();
|
|
await initializeDateFormatting('id_ID', null); // locale Indonesia
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
localizationsDelegates: const [
|
|
GlobalMaterialLocalizations.delegate,
|
|
GlobalWidgetsLocalizations.delegate,
|
|
GlobalCupertinoLocalizations.delegate,
|
|
],
|
|
supportedLocales: const [
|
|
Locale('id', ''), // Bahasa Indonesia
|
|
Locale('en', ''), // Bahasa Inggris (default backup)
|
|
],
|
|
home: const SplashScreen(),
|
|
);
|
|
}
|
|
}
|