fix: flutter format

This commit is contained in:
poka 2022-11-16 13:49:13 +01:00
parent 2c7dcd0ee6
commit 228e556198
2 changed files with 13 additions and 11 deletions

View File

@ -82,16 +82,18 @@ class MigrateIdentityScreen extends StatelessWidget {
if (status.data == null) { if (status.data == null) {
return Column(children: [ return Column(children: [
const SizedBox(height: 80), const SizedBox(height: 80),
Row(mainAxisAlignment: MainAxisAlignment.center, children: const [ Row(
SizedBox( mainAxisAlignment: MainAxisAlignment.center,
height: 35, children: const [
width: 35, SizedBox(
child: CircularProgressIndicator( height: 35,
color: orangeC, width: 35,
strokeWidth: 4, child: CircularProgressIndicator(
), color: orangeC,
), strokeWidth: 4,
]), ),
),
]),
]); ]);
} }

View File

@ -24,7 +24,7 @@ class QrCodeFullscreen extends StatelessWidget {
backgroundColor: color ?? Colors.black, backgroundColor: color ?? Colors.black,
toolbarHeight: 60 * ratio, toolbarHeight: 60 * ratio,
leading: IconButton( leading: IconButton(
icon:const Icon(Icons.arrow_back, color: orangeC), icon: const Icon(Icons.arrow_back, color: orangeC),
onPressed: () { onPressed: () {
Navigator.pop(context); Navigator.pop(context);
}), }),