removed dots after TopCenteredMessage text
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m17s
Pull Request Pipeline / lint (pull_request) Successful in 2m20s

This commit is contained in:
2025-12-06 11:22:34 +01:00
parent 03035138ac
commit 306a783d67
2 changed files with 3 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.report, icon: Icons.report,
title: 'Info', title: 'Info',
message: 'No games created yet.', message: 'No games created yet',
), ),
); );
} }

View File

@@ -56,7 +56,7 @@ class _GroupsViewState extends State<GroupsView> {
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.report, icon: Icons.report,
title: 'Error', title: 'Error',
message: 'Group data couldn\'t\nbe loaded.', message: 'Group data couldn\'t\nbe loaded',
), ),
); );
} }
@@ -66,7 +66,7 @@ class _GroupsViewState extends State<GroupsView> {
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,
title: 'Info', title: 'Info',
message: 'No groups created yet.', message: 'No groups created yet',
), ),
); );
} }