remove dots after sentences
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m1s
Pull Request Pipeline / lint (pull_request) Successful in 2m4s

This commit is contained in:
2025-12-24 22:53:17 +01:00
parent b0a5145490
commit 12856342a8
2 changed files with 5 additions and 5 deletions

View File

@@ -112,7 +112,7 @@ class _HomeViewState extends State<HomeView> {
visible: !isLoading && loadedRecentMatches.isNotEmpty, visible: !isLoading && loadedRecentMatches.isNotEmpty,
replacement: const Center( replacement: const Center(
heightFactor: 12, heightFactor: 12,
child: Text('No recent games available.'), child: Text('No recent games available'),
), ),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
@@ -145,7 +145,7 @@ class _HomeViewState extends State<HomeView> {
] else ...[ ] else ...[
const Center( const Center(
heightFactor: 5.35, heightFactor: 5.35,
child: Text('No second game available.'), child: Text('No second game available'),
), ),
], ],
], ],

View File

@@ -179,10 +179,10 @@ class _PlayerSelectionState extends State<PlayerSelection> {
icon: Icons.info, icon: Icons.info,
title: 'Info', title: 'Info',
message: allPlayers.isEmpty message: allPlayers.isEmpty
? 'No players created yet.' ? 'No players created yet'
: (selectedPlayers.length == allPlayers.length) : (selectedPlayers.length == allPlayers.length)
? 'No more players to add.' ? 'No more players to add'
: 'No players found with that name.', : 'No players found with that name',
), ),
child: ListView.builder( child: ListView.builder(
itemCount: suggestedPlayers.length, itemCount: suggestedPlayers.length,