mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
65 lines
1.5 KiB
Dart
65 lines
1.5 KiB
Dart
import 'package:comunic/helpers/account_credentials_helper.dart';
|
|
import 'package:comunic/models/config.dart';
|
|
import 'package:comunic/ui/routes/home_route.dart';
|
|
import 'package:comunic/ui/routes/login_route.dart';
|
|
import 'package:comunic/utils/ui_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// Main file of the application
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
void main() {
|
|
/// Initialize application configuration
|
|
///
|
|
// TODO : Adapt to production
|
|
Config.set(Config(
|
|
apiServerName: "devweb.local",
|
|
apiServerUri: "/comunic/api/",
|
|
apiServerSecure: false,
|
|
serviceName: "ComunicFlutter",
|
|
serviceToken: "G9sZCBmb3IgVWJ1bnR1CkNvbW1lbnRbbmVdPeCkieCkrOCkq"));
|
|
|
|
runApp(ComunicApplication());
|
|
}
|
|
|
|
class ComunicApplication extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: ComunicApplicationHome(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ComunicApplicationHome extends StatefulWidget {
|
|
@override
|
|
State<StatefulWidget> createState() => _ComunicApplicationHomeState();
|
|
}
|
|
|
|
class _ComunicApplicationHomeState extends State<ComunicApplicationHome> {
|
|
bool _signedIn;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
AccountCredentialsHelper().signedIn().then((v) {
|
|
setState(() {
|
|
_signedIn = v;
|
|
});
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (_signedIn == null) return buildLoadingPage();
|
|
|
|
if (_signedIn)
|
|
return HomeRoute();
|
|
else
|
|
return LoginRoute();
|
|
}
|
|
}
|