Merge pull request 'feat: host como jugador' (#2) from feat/host-como-jugador into main
All checks were successful
Build & Deploy Farolero / Análisis de código (push) Successful in 10s
Build & Deploy Farolero / Build APK + AAB release (push) Successful in 1m51s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-04-24 20:03:59 +02:00
5 changed files with 2 additions and 5 deletions

View File

@@ -230,7 +230,7 @@ class _PantallaCrearPartidaState extends State<PantallaCrearPartida> {
mainAxisSize: MainAxisSize.min,
children: [
DropdownButtonFormField<String>(
value: seleccionado,
initialValue: seleccionado,
decoration: InputDecoration(
prefixIcon: const Icon(Icons.person),
hintText: l10n.selectProfile,

View File

@@ -81,7 +81,7 @@ class _PantallaLobbyHostState extends State<PantallaLobbyHost> {
),
const SizedBox(height: 12),
DropdownButtonFormField<String>(
value: _perfilSeleccionado,
initialValue: _perfilSeleccionado,
decoration: InputDecoration(
prefixIcon: const Icon(Icons.person),
hintText: l10n.selectProfile,

View File

@@ -1,6 +1,5 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:farolero/estado/estado_juego.dart';
import 'package:farolero/modelos/palabra.dart';
import 'package:farolero/modelos/partida.dart';
void main() {

View File

@@ -1,4 +1,3 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:farolero/estado/estado_juego.dart';

View File

@@ -1,4 +1,3 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:farolero/modelos/usuario.dart';
import 'package:farolero/servicios/servicio_nearby.dart';