From 511124e323b48d9d52469289acdca6f1bfa82d13 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Sat, 15 Nov 2025 21:57:31 +0100 Subject: [PATCH] reduced mock data loading time --- lib/presentation/views/main_menu/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/groups_view.dart b/lib/presentation/views/main_menu/groups_view.dart index 623f7df..4865d0a 100644 --- a/lib/presentation/views/main_menu/groups_view.dart +++ b/lib/presentation/views/main_menu/groups_view.dart @@ -15,7 +15,7 @@ class GroupsView extends StatefulWidget { class _GroupsViewState extends State { Future> _getMockGroups() async { - await Future.delayed(const Duration(seconds: 4)); + await Future.delayed(const Duration(seconds: 2)); final player1 = Player(id: 'p1', name: 'Felix'); final player2 = Player(id: 'p2', name: 'Yannick'); final player3 = Player(id: 'p3', name: 'Mathis');