d4t_formulas/lib/database/formulas_database_web.dart

12 lines
282 B
Dart
Raw Normal View History

2026-02-07 16:01:37 +00:00
import 'package:drift/drift.dart';
import 'package:drift/web.dart';
LazyDatabase openConnection() {
2026-02-07 16:01:37 +00:00
return LazyDatabase(() async {
// For web, use the web implementation
return WebDatabase.withStorage(
await DriftWebStorage.indexedDb('formulas_db'),
);
});
}