GameHistoryView anpassen #20
@@ -63,7 +63,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
|
|||||||
return const Center(
|
return const Center(
|
||||||
heightFactor: 4,
|
heightFactor: 4,
|
||||||
child: Text(
|
child: Text(
|
||||||
'Error while loading recent games.',
|
'Error while loading games.',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -71,7 +71,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
|
|||||||
(!snapshot.hasData || snapshot.data!.isEmpty)) {
|
(!snapshot.hasData || snapshot.data!.isEmpty)) {
|
||||||
return const Center(
|
return const Center(
|
||||||
heightFactor: 4,
|
heightFactor: 4,
|
||||||
child: Text('No recent games available.'),
|
child: Text('No games available.'),
|
||||||
|
gelbeinhalb marked this conversation as resolved
Outdated
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user
Die Skeleton-Zeit ist viel kürzer als bei allen anderen Screens. Ich glaube das liegt an dieser Zeile, weil du hier die
isLoadingVariable setzt und nicht nach dem oben angegebenen 250ms delay.okay danke :) guck ich mir an