remove uneccessary groupNameController
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m0s
Pull Request Pipeline / lint (pull_request) Successful in 2m17s

This commit is contained in:
2025-11-24 21:24:51 +01:00
parent 54b54796e8
commit 442e1d64a3
2 changed files with 0 additions and 3 deletions

View File

@@ -10,13 +10,11 @@ import 'package:provider/provider.dart';
import 'package:skeletonizer/skeletonizer.dart';
class PlayerSelection extends StatefulWidget {
final TextEditingController groupNameController;
final TextEditingController searchBarController;
final Function(List<Player> value) onChanged;
const PlayerSelection({
super.key,
required this.groupNameController,
required this.searchBarController,
required this.onChanged,
});