fix back icon place

merge-requests/709/head
Elham Rababah 5 years ago
parent 8f6de2e02b
commit 2fa8fa6177

@ -68,10 +68,9 @@ class _VerificationMethodsScreenState extends State<VerificationMethodsScreen> {
widthFactor: 0.9,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
SizedBox(
height: SizeConfig.heightMultiplier * 3,
height: SizeConfig.heightMultiplier * (SizeConfig.isHeightShort?6:4),
),
if(authenticationViewModel.isFromLogin)
InkWell(
@ -85,7 +84,7 @@ class _VerificationMethodsScreenState extends State<VerificationMethodsScreen> {
Column(
children: <Widget>[
SizedBox(
height: SizeConfig.heightMultiplier*4,
height: SizeConfig.heightMultiplier*(SizeConfig.isHeightShort?3:4),
),
authenticationViewModel.user != null && isMoreOption == false
? Column(

@ -57,15 +57,14 @@ class SMSOTP {
child: Container(
height: dialogHeight,
width: dialogWidth,
child: AppScaffold(
isShowAppBar: false,
body: SingleChildScrollView(
child: Material(
child: SingleChildScrollView(
child: Container(
color: Colors.white,
child: StatefulBuilder(builder: (context, setState) {
if (displayTime == '') {
startTimer(setState);
}
color: Colors.white,
child: StatefulBuilder(builder: (context, setState) {
if (displayTime == '') {
startTimer(setState);
}
return Center(
child: FractionallySizedBox(
@ -273,13 +272,13 @@ class SMSOTP {
),
);
})
})
),
),
),
),
),
),
),
);

Loading…
Cancel
Save