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

Merge branch '4-add-icons-on-game-levels-modes' into 'master'

Resolve "Add icons on game levels/modes"

Closes #4

See merge request !3
parents 4d5029f0 c67bcb5b
No related branches found
No related tags found
1 merge request!3Resolve "Add icons on game levels/modes"
Pipeline #862 passed
......@@ -2,5 +2,5 @@ org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
app.versionName=1.0.1
app.versionCode=2
app.versionName=1.0.2
app.versionCode=3
......@@ -21,8 +21,9 @@ class CpuLevelPage extends StatelessWidget {
children: <Widget>[
FlatButton(
color: Colors.yellow,
padding: EdgeInsets.all(15),
child: Text(
'DUMB',
'☺️ FACILE',
style: Theme.of(context)
.textTheme
.display2
......@@ -42,8 +43,9 @@ class CpuLevelPage extends StatelessWidget {
),
FlatButton(
color: Colors.red,
padding: EdgeInsets.all(15),
child: Text(
'HARD',
'🤔 DIFFICILE',
style: Theme.of(context)
.textTheme
.display2
......@@ -63,8 +65,9 @@ class CpuLevelPage extends StatelessWidget {
),
FlatButton(
color: Colors.deepPurpleAccent,
padding: EdgeInsets.all(15),
child: Text(
'HARDEST',
'🤯 TRES DIFFICILE',
style: Theme.of(context)
.textTheme
.display2
......
......@@ -18,8 +18,9 @@ class HomePage extends StatelessWidget {
children: <Widget>[
FlatButton(
color: Colors.green,
padding: EdgeInsets.all(15),
child: Text(
'VS PLAYER',
'🧑 2 JOUEURS 🧑',
style: Theme.of(context)
.textTheme
.display2
......@@ -36,9 +37,10 @@ class HomePage extends StatelessWidget {
},
),
FlatButton(
color: Colors.black,
color: Colors.orange,
padding: EdgeInsets.all(15),
child: Text(
'VS CPU',
'🧑 1 JOUEUR 🤖',
style: Theme.of(context)
.textTheme
.display2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment