fix dart analysis issues
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 37s
Pull Request Pipeline / lint (pull_request) Successful in 46s

This commit is contained in:
2026-03-07 23:34:43 +01:00
parent 81aad9280c
commit 8e20fe1034
3 changed files with 3 additions and 6 deletions

View File

@@ -141,7 +141,7 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
}
/// Returns the title of the current tab based on [currentIndex].
String _currentTabTitle(context) {
String _currentTabTitle(BuildContext context) {
final loc = AppLocalizations.of(context);
switch (currentIndex) {
case 0:

View File

@@ -147,7 +147,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
(selectedPlayers.length < 2))
? null
: () async {
Group? updatedGroup = null;
Group? updatedGroup;
bool successfullNameChange = true;
bool successfullMemberChange = true;
late bool success;