1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/main.dart

76 lines
1.8 KiB
Dart
Raw Normal View History

2019-04-23 16:11:19 +00:00
import 'package:comunic/helpers/account_helper.dart';
2019-04-24 09:24:05 +00:00
import 'package:comunic/helpers/database/database_helper.dart';
2019-11-01 12:48:40 +00:00
import 'package:comunic/helpers/preferences_helper.dart';
2019-04-22 17:16:26 +00:00
import 'package:comunic/ui/routes/home_route.dart';
import 'package:comunic/ui/routes/login_route.dart';
2020-03-28 16:11:11 +00:00
import 'package:comunic/utils/intl_utils.dart';
2019-04-22 17:16:26 +00:00
import 'package:comunic/utils/ui_utils.dart';
2019-04-21 08:34:27 +00:00
import 'package:flutter/material.dart';
/// Main file of the application
///
/// @author Pierre HUBERT
2019-11-01 12:48:40 +00:00
void subMain() async {
WidgetsFlutterBinding.ensureInitialized();
2019-04-24 09:24:05 +00:00
// Connect to database
2019-11-01 12:48:40 +00:00
await DatabaseHelper.open();
2019-04-24 09:24:05 +00:00
2020-03-28 16:11:11 +00:00
// Get current system language
await initTranslations();
2019-11-01 12:48:40 +00:00
runApp(ComunicApplication(
darkMode: (await PreferencesHelper.getInstance())
.getBool(PreferencesKeyList.ENABLE_DARK_THEME),
));
2019-04-21 08:34:27 +00:00
}
class ComunicApplication extends StatelessWidget {
2019-11-01 12:48:40 +00:00
final bool darkMode;
const ComunicApplication({Key key, @required this.darkMode})
: assert(darkMode != null),
super(key: key);
2019-04-21 08:34:27 +00:00
@override
Widget build(BuildContext context) {
return MaterialApp(
2019-04-21 09:44:07 +00:00
debugShowCheckedModeBanner: false,
2019-04-22 17:16:26 +00:00
home: ComunicApplicationHome(),
2019-11-01 13:17:46 +00:00
theme: darkMode ? ThemeData.dark() : ThemeData.light(),
2019-04-21 08:34:27 +00:00
);
}
}
2019-04-22 17:16:26 +00:00
class ComunicApplicationHome extends StatefulWidget {
@override
State<StatefulWidget> createState() => _ComunicApplicationHomeState();
}
class _ComunicApplicationHomeState extends State<ComunicApplicationHome> {
bool _signedIn;
@override
void initState() {
super.initState();
2019-04-23 16:11:19 +00:00
AccountHelper().signedIn().then((v) {
2019-04-22 17:16:26 +00:00
setState(() {
_signedIn = v;
});
});
}
@override
Widget build(BuildContext context) {
if (_signedIn == null) return buildLoadingPage();
if (_signedIn)
return HomeRoute();
else
return LoginRoute();
}
}