game names now can have up to 20 chars

This commit is contained in:
2025-07-20 23:47:18 +02:00
parent feff54fd65
commit 1e40b41e26
3 changed files with 6 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ class _CreateGameViewState extends State<CreateGameView> {
padding: const EdgeInsets.fromLTRB(15, 10, 10, 0),
child: CupertinoTextField(
decoration: const BoxDecoration(),
maxLength: 16,
maxLength: 20,
prefix: Text(AppLocalizations.of(context).name),
textAlign: TextAlign.right,
placeholder: AppLocalizations.of(context).game_title,