popupTOURNAMENT method
Implementation
Object popupTOURNAMENT(BuildContext context) {
roomController.text = "";
return showDialog(
context: context,
builder: (BuildContext context) => AlertDialog(
backgroundColor: Theme.of(context).colorScheme.tertiary,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(15)),
),
contentPadding: EdgeInsets.all(defaultWidth * 0.05),
content: SizedBox(
width: defaultWidth * 0.85,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
"Crea un torneo ...",
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
color: Theme.of(context).colorScheme.primary,
),
),
SizedBox(height: defaultWidth * 0.05),
SelectionMenu.rowOption(
context, "Rondas:", selectRound.selectionMenu(context)),
SizedBox(height: defaultWidth * 0.05),
SelectionMenu.rowOption(
context, "Duración:", selectTime.selectionMenu(context)),
SizedBox(height: defaultWidth * 0.05),
SelectionMenu.rowOption(context, "Incremento:",
selectIncrement.selectionMenu(context)),
SizedBox(height: defaultWidth * 0.05),
SelectionMenu.rowOption(context, "Fecha:", selectDate(context)),
SizedBox(height: defaultWidth * 0.05),
playButton(context, "Crear", () async {
int error = await apiCreateTournament(
backDate,
selectRound.selectedCorrectValue,
selectTime.selectedCorrectValue,
selectIncrement.selectedCorrectValue);
if (context.mounted) {
if (error == 0) {
popupResultCreate(context, "Torneo creado exitosamente");
} else if (error == 400) {
popupResultCreate(context,
"La hora de inicio debe ser al menos 15 minutos después de la actual");
} else if (error == 409) {
popupResultCreate(
context, "No se puede crear más de un torneo al día");
} else {
popupResultCreate(context,
"Ha surgido un error a la hora de crear torneo");
}
}
}),
SizedBox(height: defaultWidth * 0.075),
Row(
children: [
Expanded(
child: Divider(
color: Theme.of(context).colorScheme.primary,
thickness: 1.25,
indent: defaultWidth * 0.05,
endIndent: defaultWidth * 0.05,
),
),
Text(
" o ",
style: TextStyle(
fontSize: 19,
fontWeight: FontWeight.bold,
color: Theme.of(context).colorScheme.primary,
),
),
Expanded(
child: Divider(
color: Theme.of(context).colorScheme.primary,
thickness: 1.25,
indent: defaultWidth * 0.05,
endIndent: defaultWidth * 0.05,
),
),
],
),
SizedBox(height: defaultWidth * 0.05),
Text(
"... compite en otros existentes",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
color: Theme.of(context).colorScheme.primary,
),
),
SizedBox(height: defaultWidth * 0.05),
playButton(
context,
"Gestionar torneos",
() async {
ActualSelection.manageTournamentDatas =
List.empty(growable: true);
await apiMyTournaments();
if (context.mounted) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const ManageTournamentPage(),
),
);
}
},
),
],
),
),
),
);
}