diff --git a/lib/screens/myWallets/migrate_identity.dart b/lib/screens/myWallets/migrate_identity.dart
index 5c622d4cd19e75e679d6165c20e257e2153eb0cb..b11aac4ff114934d542545497ff60d40485ce858 100644
--- a/lib/screens/myWallets/migrate_identity.dart
+++ b/lib/screens/myWallets/migrate_identity.dart
@@ -82,16 +82,18 @@ class MigrateIdentityScreen extends StatelessWidget {
                 if (status.data == null) {
                   return Column(children: [
                     const SizedBox(height: 80),
-                    Row(mainAxisAlignment: MainAxisAlignment.center, children: const  [
-                      SizedBox(
-                        height: 35,
-                        width: 35,
-                        child: CircularProgressIndicator(
-                          color: orangeC,
-                          strokeWidth: 4,
-                        ),
-                      ),
-                    ]),
+                    Row(
+                        mainAxisAlignment: MainAxisAlignment.center,
+                        children: const [
+                          SizedBox(
+                            height: 35,
+                            width: 35,
+                            child: CircularProgressIndicator(
+                              color: orangeC,
+                              strokeWidth: 4,
+                            ),
+                          ),
+                        ]),
                   ]);
                 }
 
diff --git a/lib/screens/qrcode_fullscreen.dart b/lib/screens/qrcode_fullscreen.dart
index bdb508dac31cd41133a5ec6ec33c6bfde7c1c8e8..1406f241ec2dbfd3dc65e3c51ed64d53006601e4 100644
--- a/lib/screens/qrcode_fullscreen.dart
+++ b/lib/screens/qrcode_fullscreen.dart
@@ -24,7 +24,7 @@ class QrCodeFullscreen extends StatelessWidget {
           backgroundColor: color ?? Colors.black,
           toolbarHeight: 60 * ratio,
           leading: IconButton(
-              icon:const  Icon(Icons.arrow_back, color: orangeC),
+              icon: const Icon(Icons.arrow_back, color: orangeC),
               onPressed: () {
                 Navigator.pop(context);
               }),