diff --git a/app/lib/screens/mobile_registration_screen.dart b/app/lib/screens/mobile_registration_screen.dart index fb42089c..730a22c3 100644 --- a/app/lib/screens/mobile_registration_screen.dart +++ b/app/lib/screens/mobile_registration_screen.dart @@ -307,13 +307,13 @@ class _MobileRegistrationScreenState extends State { Widget registrationStepper() { return Stepper( controlsBuilder: (BuildContext context, ControlsDetails details) { - return Column( - children: [ - Row( - mainAxisSize: MainAxisSize.max, - mainAxisAlignment: MainAxisAlignment.spaceAround, - children: [ - ElevatedButton( + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 16.0), + child: Row( + mainAxisSize: MainAxisSize.max, + children: [ + Expanded( + child: ElevatedButton( onPressed: () { details.onStepCancel!(); }, @@ -321,7 +321,10 @@ class _MobileRegistrationScreenState extends State { state == _State.DoubleName ? 'CANCEL' : 'PREVIOUS', ), ), - ElevatedButton( + ), + const SizedBox(width: 16), + Expanded( + child: ElevatedButton( onPressed: state == _State.SeedPhrase && didWriteSeed == false ? null : () { @@ -330,10 +333,10 @@ class _MobileRegistrationScreenState extends State { child: Text( state == _State.Finish ? 'FINISH' : 'NEXT', ), - ) - ], - ), - ], + ), + ), + ], + ), ); }, type: StepperType.vertical,