diff --git a/android/gradle.properties b/android/gradle.properties
index 7e20d00a47dd483684c022fbddea8ef077056451..80ac9fe7c240bbc9ac7406ead2da7bf3255d9739 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.2.6
-app.versionCode=12
+app.versionName=1.2.7
+app.versionCode=13
diff --git a/lib/screens/home.dart b/lib/screens/home.dart
index defa3bdf91218424cb0ae873c6e2ad49f6b75fbd..7f997124ca58c1ee5e725922d9654390a912bcfe 100644
--- a/lib/screens/home.dart
+++ b/lib/screens/home.dart
@@ -95,11 +95,7 @@ class Home extends StatelessWidget {
         mainAxisSize: MainAxisSize.min,
         mainAxisAlignment: MainAxisAlignment.center,
         children: [
-          FlatButton(
-            onPressed: () => pickLetter(myProvider),
-            child: Text("🔀"),
-          ),
-          myProvider.letter == '' ? Container() : Container(
+          Container(
             margin: EdgeInsets.all(15),
             padding: EdgeInsets.all(15),
             decoration: BoxDecoration(
@@ -110,12 +106,15 @@ class Home extends StatelessWidget {
                 width: 4,
               ),
             ),
-            child: Text(
-              myProvider.letter,
-              style: TextStyle(
-                fontSize: 40,
-                fontWeight: FontWeight.w600,
-                color: Colors.black,
+            child: FlatButton(
+              onPressed: () => pickLetter(myProvider),
+              child: Text(
+                myProvider.letter == '' ? "🔀" : myProvider.letter,
+                style: TextStyle(
+                  fontSize: 40,
+                  fontWeight: FontWeight.w600,
+                  color: Colors.black,
+                ),
               ),
             ),
           ),
@@ -133,11 +132,7 @@ class Home extends StatelessWidget {
         mainAxisSize: MainAxisSize.min,
         mainAxisAlignment: MainAxisAlignment.center,
         children: [
-          FlatButton(
-            onPressed: () => pickCategory(myProvider),
-            child: Text("🔀"),
-          ),
-          myProvider.category == '' ? Container() : Container(
+          Container(
             margin: EdgeInsets.all(5),
             padding: EdgeInsets.all(5),
             decoration: BoxDecoration(
@@ -148,12 +143,15 @@ class Home extends StatelessWidget {
                 width: 4,
               ),
             ),
-            child: Text(
-              myProvider.category,
-              style: TextStyle(
-                fontSize: 40,
-                fontWeight: FontWeight.w600,
-                color: Colors.black,
+            child: FlatButton(
+              onPressed: () => pickCategory(myProvider),
+              child: Text(
+                myProvider.category == '' ? "🔀" : myProvider.category,
+                style: TextStyle(
+                  fontSize: 40,
+                  fontWeight: FontWeight.w600,
+                  color: Colors.black,
+                ),
               ),
             ),
           ),