fix: incorrect user of paraent data widget

This commit is contained in:
2026-05-22 14:44:16 +02:00
parent 6fb4a8996c
commit a0897d4966
3 changed files with 5 additions and 6 deletions

View File

@@ -59,9 +59,9 @@ class _CreateTeamsViewState extends State<CreateTeamsView> {
body: Stack(
alignment: Alignment.center,
children: [
Expanded(
Positioned.fill(
child: ListView.builder(
padding: const EdgeInsets.only(top: 12, bottom: 12),
padding: const EdgeInsets.only(top: 12, bottom: 96),
itemCount: teams.length,
itemBuilder: (context, index) {
return TeamCreationTile(

View File

@@ -55,9 +55,9 @@ class _ManageMembersViewState extends State<ManageMembersView> {
body: Stack(
alignment: AlignmentDirectional.center,
children: [
Expanded(
Positioned.fill(
child: ReorderableListView.builder(
padding: const EdgeInsets.symmetric(vertical: 12),
padding: const EdgeInsets.fromLTRB(0, 12, 0, 96),
buildDefaultDragHandles: false,
itemCount: allItemsCount,
onReorder: onReorder,
@@ -282,7 +282,6 @@ class _ManageMembersViewState extends State<ManageMembersView> {
void submitMatch() async {
final match = widget.match;
print('teams: ${match.teams}');
await db.matchDao.addMatch(match: match);
if (mounted) {
Navigator.pushAndRemoveUntil(

View File

@@ -1,7 +1,7 @@
name: tallee
description: "Tracking App for Card Games"
publish_to: 'none'
version: 0.0.30+332
version: 0.0.30+333
environment:
sdk: ^3.8.1