Compare commits

...

2 Commits

Author SHA1 Message Date
3f4ec2d20f 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
2026-04-24 20:03:59 +02:00
FreeTLab
1231b32c3c feat: host como jugador 2026-04-24 20:01:54 +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, mainAxisSize: MainAxisSize.min,
children: [ children: [
DropdownButtonFormField<String>( DropdownButtonFormField<String>(
value: seleccionado, initialValue: seleccionado,
decoration: InputDecoration( decoration: InputDecoration(
prefixIcon: const Icon(Icons.person), prefixIcon: const Icon(Icons.person),
hintText: l10n.selectProfile, hintText: l10n.selectProfile,

View File

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

View File

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

View File

@@ -1,4 +1,3 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:farolero/estado/estado_juego.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:flutter_test/flutter_test.dart';
import 'package:farolero/modelos/usuario.dart'; import 'package:farolero/modelos/usuario.dart';
import 'package:farolero/servicios/servicio_nearby.dart'; import 'package:farolero/servicios/servicio_nearby.dart';