fix title and ruleset/color choose order in game creation
This commit is contained in:
@@ -98,6 +98,7 @@ class _CreateGameViewState extends State<CreateGameView> {
|
|||||||
Ruleset.multipleWinners,
|
Ruleset.multipleWinners,
|
||||||
translateRulesetToString(Ruleset.multipleWinners, context),
|
translateRulesetToString(Ruleset.multipleWinners, context),
|
||||||
),
|
),
|
||||||
|
(Ruleset.placement, translateRulesetToString(Ruleset.placement, context)),
|
||||||
];
|
];
|
||||||
_colors = [
|
_colors = [
|
||||||
(GameColor.green, translateGameColorToString(GameColor.green, context)),
|
(GameColor.green, translateGameColorToString(GameColor.green, context)),
|
||||||
@@ -212,12 +213,12 @@ class _CreateGameViewState extends State<CreateGameView> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
|
// Choose color tile
|
||||||
|
ChooseTile(title: loc.ruleset, trailing: getRulesetDropdown(loc)),
|
||||||
|
|
||||||
// Choose ruleset tile
|
// Choose ruleset tile
|
||||||
if (!isEditMode())
|
if (!isEditMode())
|
||||||
ChooseTile(title: loc.ruleset, trailing: getColorDropdown(loc)),
|
ChooseTile(title: loc.color, trailing: getColorDropdown(loc)),
|
||||||
|
|
||||||
// Choose color tile
|
|
||||||
ChooseTile(title: loc.color, trailing: getRulesetDropdown(loc)),
|
|
||||||
|
|
||||||
// Description input field
|
// Description input field
|
||||||
Container(
|
Container(
|
||||||
|
|||||||
Reference in New Issue
Block a user