You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
73 lines
2.6 KiB
import 'dart:io';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:smartfit_app_mobile/modele/local_db/model.dart' as db;
|
|
import 'package:provider/provider.dart';
|
|
import 'package:smartfit_app_mobile/modele/local_db/objectbox.dart';
|
|
import 'package:smartfit_app_mobile/modele/user.dart';
|
|
import 'package:smartfit_app_mobile/common/colo_extension.dart';
|
|
import 'package:smartfit_app_mobile/view/login/signup_view.dart';
|
|
import 'package:smartfit_app_mobile/view/main_tab/main_tab_view.dart';
|
|
|
|
late ObjectBox localDB;
|
|
|
|
Future<void> main() async {
|
|
// ObjectBox
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
localDB = await ObjectBox.create();
|
|
await localDB.init();
|
|
|
|
runApp(ChangeNotifierProvider(
|
|
create: (context) => User(), child: const MyApp()));
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Widget viewToDisplay = const SignUpView();
|
|
|
|
// Skip sign-up + fill provider if user already connected
|
|
if (localDB.hasUser()) {
|
|
final db.User user = localDB.userBox.get(1);
|
|
final userActivities = localDB.loadActivities();
|
|
|
|
context.watch<User>().username = user.username;
|
|
context.watch<User>().email = user.email;
|
|
context.watch<User>().token = user.token;
|
|
context.watch<User>().listActivity = userActivities;
|
|
|
|
stdout.write("===== USER =====\n");
|
|
stdout.write("Username: ${user.username}\n");
|
|
stdout.write("Email: ${user.email}\n");
|
|
stdout.write("Token: ${user.token}\n");
|
|
|
|
viewToDisplay = const MainTabView();
|
|
}
|
|
|
|
return MaterialApp(
|
|
title: 'SmartFit',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
// This is the theme of your application.
|
|
//
|
|
// TRY THIS: Try running your application with "flutter run". You'll see
|
|
// the application has a blue toolbar. Then, without quitting the app,
|
|
// try changing the seedColor in the colorScheme below to Colors.green
|
|
// and then invoke "hot reload" (save your changes or press the "hot
|
|
// reload" button in a Flutter-supported IDE, or press "r" if you used
|
|
// the command line to start the app).
|
|
//
|
|
// Notice that the counter didn't reset back to zero; the application
|
|
// state is not lost during the reload. To reset the state, use hot
|
|
// restart instead.
|
|
//
|
|
// This works for code too, not just values: Most code changes can be
|
|
// tested with just a hot reload.
|
|
primaryColor: TColor.primaryColor1,
|
|
fontFamily: "Poppins"),
|
|
home: viewToDisplay,
|
|
);
|
|
}
|
|
}
|