MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
2 changed files with 0 additions and 3 deletions
Showing only changes of commit 442e1d64a3 - Show all commits

View File

@@ -70,7 +70,6 @@ class _CreateGroupViewState extends State<CreateGroupView> {
),
Expanded(
child: PlayerSelection(
groupNameController: _groupNameController,
searchBarController: _searchBarController,
onChanged: (value) {
selectedPlayers = [...value];

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,
});