diff --git a/android/gradle.properties b/android/gradle.properties index 0cdf734c706a0f0e1f046ca5b1cb2f96ff840365..e7e19cc110d8a4d7e3b650ddad8c0739eea18a65 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -app.versionName=1.1.0 -app.versionCode=3 +app.versionName=1.1.1 +app.versionCode=4 diff --git a/lib/main.dart b/lib/main.dart index e8e3e15daedf65723d3b7ad58372f1f002885890..33fc10053175b08ed876374d58d285940c27e787 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -152,13 +152,13 @@ class _MyHomePageState extends State<MyHomePage> { children: <Widget>[ Text( 'Lettre aléatoire :', - style: Theme.of(context).textTheme.headline3, + style: Theme.of(context).textTheme.headline4, ), Text( '$_randomLetter', - style: Theme.of(context).textTheme.headline4, + style: Theme.of(context).textTheme.headline2, ), - FlatButton( + RaisedButton( onPressed: _pickRandomLetter, color: Colors.orange, padding: EdgeInsets.all(10.0), @@ -171,16 +171,17 @@ class _MyHomePageState extends State<MyHomePage> { ), ], ), + SizedBox(height: 50), Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Text( 'Catégorie aléatoire :', - style: Theme.of(context).textTheme.headline3, + style: Theme.of(context).textTheme.headline4, ), Text( '$_randomCategory', - style: Theme.of(context).textTheme.headline4, + style: Theme.of(context).textTheme.headline3, ), FlatButton( onPressed: _pickRandomCategory,