12 lines
No EOL
282 B
Dart
12 lines
No EOL
282 B
Dart
import 'package:drift/drift.dart';
|
|
import 'package:drift/web.dart';
|
|
|
|
|
|
LazyDatabase openConnection() {
|
|
return LazyDatabase(() async {
|
|
// For web, use the web implementation
|
|
return WebDatabase.withStorage(
|
|
await DriftWebStorage.indexedDb('formulas_db'),
|
|
);
|
|
});
|
|
} |