Skip to content
Snippets Groups Projects
Commit a6e3b0b3 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Move global parameters to bottom of settings page

parent c83c778d
No related branches found
No related tags found
1 merge request!27Resolve "Move global parameters to bottom of settings page"
Pipeline #4998 passed
This commit is part of merge request !27. Comments created here will be created in the context of that merge request.
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.23
app.versionCode=23
app.versionName=0.0.24
app.versionCode=24
Move global parameters in bottom of settings page.
Déplacement des paramètres globaux en bas de page.
......@@ -91,6 +91,10 @@ class Parameters extends StatelessWidget {
lines.add(SizedBox(height: separatorHeight));
});
lines.add(SizedBox(height: separatorHeight));
lines.add(buildStartNewGameButton());
lines.add(SizedBox(height: separatorHeight));
// Global settings
DefaultGlobalSettings.availableParameters.forEach((code) {
lines.add(Row(
......@@ -104,9 +108,6 @@ class Parameters extends StatelessWidget {
lines.add(SizedBox(height: separatorHeight));
});
lines.add(SizedBox(height: separatorHeight));
lines.add(buildStartNewGameButton());
return Column(
children: lines,
);
......
......@@ -3,7 +3,7 @@ description: Jeweled Game
publish_to: 'none'
version: 0.0.23+23
version: 0.0.24+24
environment:
sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment