fix: incorrect user of paraent data widget
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user