Implementierung der Games #203

Merged
flixcoo merged 34 commits from feature/119-implementierung-der-games-2 into development 2026-05-09 17:13:46 +00:00
Showing only changes of commit 4520281cb6 - Show all commits

View File

@@ -297,20 +297,7 @@ class _CreateGameViewState extends State<CreateGameView> {
// Choose color tile // Choose color tile
ChooseTile( ChooseTile(
title: loc.color, title: loc.color,
trailing: Row( trailing:
spacing: 8,
children: [
// Selected Color
Container(
width: 16,
height: 16,
margin: const EdgeInsets.only(left: 12),
decoration: BoxDecoration(
color: getColorFromGameColor(selectedColor!),
shape: BoxShape.circle,
),
),
//Popup //Popup
CustomPopup( CustomPopup(
showArrow: true, showArrow: true,
@@ -399,13 +386,26 @@ class _CreateGameViewState extends State<CreateGameView> {
), ),
), ),
), ),
child: Text( child: Row(
spacing: 8,
children: [
// Selected Color
Container(
width: 16,
height: 16,
margin: const EdgeInsets.only(left: 12),
decoration: BoxDecoration(
color: getColorFromGameColor(selectedColor!),
shape: BoxShape.circle,
),
),
Text(
translateGameColorToString(selectedColor!, context), translateGameColorToString(selectedColor!, context),
), ),
),
], ],
), ),
), ),
),
// Description input field // Description input field
Container( Container(