67 lines
2.0 KiB
Dart
67 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:firebase_core/firebase_core.dart';
|
|
import 'firebase_options.dart';
|
|
|
|
import 'package:intl/date_symbol_data_local.dart';
|
|
import 'pages/splash_page.dart';
|
|
import 'pages/dashboard_public.dart';
|
|
import 'pages/login_page.dart';
|
|
import 'pages/register_page.dart';
|
|
import 'pages/home_page.dart';
|
|
import 'pages/monitoring_page.dart';
|
|
import 'pages/report_page.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await Firebase.initializeApp(
|
|
options: DefaultFirebaseOptions.currentPlatform,
|
|
);
|
|
await initializeDateFormatting('id_ID', null);
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'BeramalBaik',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.green,
|
|
scaffoldBackgroundColor: Colors.green[50],
|
|
fontFamily: 'Roboto', // Semua teks default pakai Roboto
|
|
textTheme: const TextTheme(
|
|
headlineSmall: TextStyle( // AppBar
|
|
fontFamily: 'Poppins',
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 20,
|
|
),
|
|
titleLarge: TextStyle( // Judul utama lain
|
|
fontFamily: 'Poppins',
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 18,
|
|
),
|
|
bodyMedium: TextStyle( // Isi teks
|
|
fontFamily: 'Roboto',
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
useMaterial3: true,
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.green),
|
|
),
|
|
initialRoute: '/',
|
|
routes: {
|
|
'/': (context) => const SplashScreen(),
|
|
'/login': (context) => const LoginPage(),
|
|
'/register': (context) => const RegisterPage(),
|
|
'/home': (context) => HomePage(),
|
|
'/monitoring': (context) => const MonitoringPage(),
|
|
'/report': (context) => const ReportPage(),
|
|
'/dashboard_public': (context) => const DashboardPublic(),
|
|
},
|
|
);
|
|
}
|
|
}
|