add tab view filter and sort options

This commit is contained in:
Fabian Freund
2026-03-02 16:30:18 +01:00
parent 51b53d900b
commit 8898f8a317
35 changed files with 4519 additions and 692 deletions
+4 -1
View File
@@ -9,6 +9,7 @@ import 'schema_v3.dart' as v3;
import 'schema_v4.dart' as v4;
import 'schema_v5.dart' as v5;
import 'schema_v6.dart' as v6;
import 'schema_v7.dart' as v7;
class GeneratedHelper implements SchemaInstantiationHelper {
@override
@@ -24,10 +25,12 @@ class GeneratedHelper implements SchemaInstantiationHelper {
return v5.DatabaseAtV5(db);
case 6:
return v6.DatabaseAtV6(db);
case 7:
return v7.DatabaseAtV7(db);
default:
throw MissingSchemaException(version, versions);
}
}
static const versions = const [2, 3, 4, 5, 6];
static const versions = const [2, 3, 4, 5, 6, 7];
}
File diff suppressed because it is too large Load Diff