43 lines
1.4 KiB
Dart
43 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:klimatologiot/blocs/authentication_bloc/authentication_bloc.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
import 'package:klimatologiot/screens/auth/views/welcome_screen.dart';
|
|
import 'package:klimatologiot/screens/home/views/home_screen.dart';
|
|
|
|
class MyAppView extends StatelessWidget {
|
|
const MyAppView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Klimatologi',
|
|
debugShowCheckedModeBanner: false,
|
|
localizationsDelegates: const [
|
|
GlobalMaterialLocalizations.delegate,
|
|
GlobalWidgetsLocalizations.delegate,
|
|
GlobalCupertinoLocalizations.delegate,
|
|
],
|
|
supportedLocales: const [
|
|
Locale('id', 'ID'),
|
|
Locale('en'),
|
|
],
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.light(
|
|
surface: Colors.grey.shade100,
|
|
onSurface: Colors.black,
|
|
primary: Colors.blue,
|
|
onPrimary: Colors.white),
|
|
),
|
|
home: BlocBuilder<AuthenticationBloc, AuthenticationState>(
|
|
builder: ((context, state) {
|
|
if (state.status == AuthenticationStatus.authenticated) {
|
|
return HomeScreen();
|
|
} else {
|
|
return WelcomeScreen();
|
|
}
|
|
}),
|
|
));
|
|
}
|
|
}
|