simple dbhelper with Isar

This commit is contained in:
SomnusVeritas
2023-11-08 10:39:31 +01:00
parent c594c3a0c7
commit c5f5a8654c
3 changed files with 29 additions and 5 deletions

View File

@@ -1,8 +1,10 @@
import 'package:flutter/material.dart';
import 'pages/dashboard_page.dart';
import 'services/dbhelper.dart';
void main() {
void main() async {
await DbHelper.init();
runApp(const MyApp());
}