set delay in all future builders to 250ms
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m5s
Pull Request Pipeline / lint (pull_request) Successful in 2m7s

This commit is contained in:
2025-11-23 17:09:52 +01:00
parent 26fadf5093
commit 604a541392
4 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ class _GroupsViewState extends State<GroupsView> {
super.initState();
db = Provider.of<AppDatabase>(context, listen: false);
_allGroupsFuture = Future.delayed(
const Duration(milliseconds: 400),
const Duration(milliseconds: 250),
() => db.groupDao.getAllGroups(),
);
}