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

Merge branch '30-move-global-parameters-to-bottom-of-settings-page' into 'master'

Resolve "Move global parameters to bottom of settings page"

Closes #30

See merge request !27
parents c83c778d a6e3b0b3
No related branches found
No related tags found
1 merge request!27Resolve "Move global parameters to bottom of settings page"
Pipeline #5025 passed
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