- séparation des taches faite et non,

- rapettisage de la taille des taches
This commit is contained in:
2023-10-10 20:20:27 +02:00
parent 979fcfa2a1
commit 7d391194f5
13 changed files with 141 additions and 42 deletions

View File

@@ -6,7 +6,7 @@ void main() async {
//init hive
await Hive.initFlutter();
//open the box
var box = await Hive.openBox('todoBox');
await Hive.openBox('todoBox');
runApp(const MyApp());
}
@@ -23,11 +23,12 @@ class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Todo',
title: 'Tody',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.red,
),
home: const MyHomePage(title: 'Ma liste de tache'),
home: const MyHomePage(title: 'Tody'),
);
}
}