diff --git a/lib/screens/myWallets/migrate_identity.dart b/lib/screens/myWallets/migrate_identity.dart index 5c622d4..b11aac4 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 bdb508d..1406f24 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); }),