|
|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
import 'dart:async';
|
|
|
|
|
|
|
|
|
|
import 'package:doctor_app_flutter/config/config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/enum/auth_method_types.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
|
|
|
|
@ -9,6 +8,7 @@ import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
|
|
class SMSOTP {
|
|
|
|
|
final AuthMethodTypes type;
|
|
|
|
|
final mobileNo;
|
|
|
|
|
@ -48,231 +48,307 @@ class SMSOTP {
|
|
|
|
|
String displayTime = '';
|
|
|
|
|
bool isClosed = false;
|
|
|
|
|
displayDialog(BuildContext context) async {
|
|
|
|
|
double dialogWidth = MediaQuery.of(context).size.width * 0.90;
|
|
|
|
|
double dialogInputWidth = (dialogWidth / 4) -
|
|
|
|
|
(SizeConfig.isWidthLarge
|
|
|
|
|
? SizeConfig.getWidthMultiplier(width: dialogWidth) * 4.5
|
|
|
|
|
: 20);
|
|
|
|
|
double dialogHeight = SizeConfig.isHeightVeryShort
|
|
|
|
|
? MediaQuery.of(context).size.height * 0.50
|
|
|
|
|
: MediaQuery.of(context).size.height * 0.40;
|
|
|
|
|
return showDialog(
|
|
|
|
|
context: context,
|
|
|
|
|
barrierColor: Colors.black.withOpacity(0.7),
|
|
|
|
|
builder: (context) {
|
|
|
|
|
projectProvider = Provider.of(context);
|
|
|
|
|
return AlertDialog(
|
|
|
|
|
contentPadding: EdgeInsets.fromLTRB(24.0, 0.0, 0.0, 24.0),
|
|
|
|
|
content: StatefulBuilder(builder: (context, setState) {
|
|
|
|
|
if (displayTime == '') {
|
|
|
|
|
startTimer(setState);
|
|
|
|
|
}
|
|
|
|
|
return Container(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: MediaQuery.of(context).size.height * 0.50,
|
|
|
|
|
width: MediaQuery.of(context).size.width * 0.84,
|
|
|
|
|
child: Center(
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.all(13),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
type == AuthMethodTypes.SMS
|
|
|
|
|
? Padding(
|
|
|
|
|
child: Icon(
|
|
|
|
|
DoctorApp.verify_sms_1,
|
|
|
|
|
size: 50,
|
|
|
|
|
),
|
|
|
|
|
padding: EdgeInsets.only(bottom: 20),
|
|
|
|
|
)
|
|
|
|
|
: Padding(
|
|
|
|
|
child: Icon(
|
|
|
|
|
DoctorApp.verify_whtsapp,
|
|
|
|
|
size: 50,
|
|
|
|
|
),
|
|
|
|
|
padding: EdgeInsets.only(bottom: 20),
|
|
|
|
|
),
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (ctx) => Center(
|
|
|
|
|
child: Container(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: dialogHeight,
|
|
|
|
|
width: dialogWidth,
|
|
|
|
|
child: Material(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Container(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
child: StatefulBuilder(builder: (context, setState) {
|
|
|
|
|
if (displayTime == '') {
|
|
|
|
|
startTimer(setState);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Center(
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: 0.9,
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
2,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: 10, right: 10, bottom: 20),
|
|
|
|
|
child: IconButton(
|
|
|
|
|
icon: Icon(Icons.close),
|
|
|
|
|
iconSize: 40,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
this.isClosed = true;
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
this.onFailure();
|
|
|
|
|
},
|
|
|
|
|
))
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
])),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(top: 5, right: 5),
|
|
|
|
|
child: AppText(
|
|
|
|
|
TranslationBase.of(context).verificationMessage +
|
|
|
|
|
' XXXXXX' +
|
|
|
|
|
mobileNo
|
|
|
|
|
.toString()
|
|
|
|
|
.substring(mobileNo.toString().length - 3),
|
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
)),
|
|
|
|
|
Form(
|
|
|
|
|
key: verifyAccountForm,
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: EdgeInsets.only(top: 20),
|
|
|
|
|
child: Directionality(
|
|
|
|
|
textDirection: TextDirection.ltr,
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Container(
|
|
|
|
|
width: SizeConfig.realScreenWidth * 0.16,
|
|
|
|
|
margin: EdgeInsets.all(5),
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
textInputAction: TextInputAction.next,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
autofocus: true,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit1,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
|
decoration: buildInputDecoration(context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
validator: validateCodeDigit,
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD2);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD2);
|
|
|
|
|
verifyAccountFormValue['digit1'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
width: SizeConfig.realScreenWidth * 0.16,
|
|
|
|
|
margin: EdgeInsets.all(5),
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD2,
|
|
|
|
|
textInputAction: TextInputAction.next,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit2,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
|
decoration: buildInputDecoration(context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD3);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD3);
|
|
|
|
|
verifyAccountFormValue['digit2'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator: validateCodeDigit),
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
Icon(
|
|
|
|
|
type == AuthMethodTypes.SMS
|
|
|
|
|
? DoctorApp.verify_sms_1
|
|
|
|
|
: DoctorApp.verify_whtsapp,
|
|
|
|
|
size: SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
9,
|
|
|
|
|
color: Color(0xFF2B353E),
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
icon: Icon(Icons.close),
|
|
|
|
|
color: Color(0xFF2B353E),
|
|
|
|
|
iconSize:
|
|
|
|
|
SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
15,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
this.isClosed = true;
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
this.onFailure();
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
]),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
(SizeConfig.isHeightVeryShort ? 10 : 5),
|
|
|
|
|
),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(top: 5, right: 5),
|
|
|
|
|
child: AppText(
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.verificationMessage +
|
|
|
|
|
' XXXXXX' +
|
|
|
|
|
mobileNo.toString().substring(
|
|
|
|
|
mobileNo.toString().length - 3),
|
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
letterSpacing: -0.48,
|
|
|
|
|
color: Color(0xFF2B353E),
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth(
|
|
|
|
|
width: dialogWidth) *
|
|
|
|
|
3.5, //14,
|
|
|
|
|
maxLines: 2,
|
|
|
|
|
)),
|
|
|
|
|
Form(
|
|
|
|
|
key: verifyAccountForm,
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
top: SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
2),
|
|
|
|
|
child: Directionality(
|
|
|
|
|
textDirection: TextDirection.ltr,
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Container(
|
|
|
|
|
width: dialogInputWidth,
|
|
|
|
|
height:
|
|
|
|
|
SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
30,
|
|
|
|
|
margin: EdgeInsets.symmetric(
|
|
|
|
|
vertical: 2, horizontal: 5),
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
textInputAction:
|
|
|
|
|
TextInputAction.next,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
autofocus: true,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit1,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
keyboardType:
|
|
|
|
|
TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
validator: validateCodeDigit,
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD2);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD2);
|
|
|
|
|
verifyAccountFormValue[
|
|
|
|
|
'digit1'] = val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
width: dialogInputWidth,
|
|
|
|
|
height:
|
|
|
|
|
SizeConfig.getHeightMultiplier(
|
|
|
|
|
height: dialogHeight) *
|
|
|
|
|
30,
|
|
|
|
|
margin: EdgeInsets.symmetric(
|
|
|
|
|
vertical: 2, horizontal: 5),
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD2,
|
|
|
|
|
textInputAction:
|
|
|
|
|
TextInputAction.next,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit2,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
keyboardType:
|
|
|
|
|
TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(
|
|
|
|
|
context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD3);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD3);
|
|
|
|
|
verifyAccountFormValue[
|
|
|
|
|
'digit2'] = val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator: validateCodeDigit),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.symmetric(
|
|
|
|
|
vertical: 2, horizontal: 5),
|
|
|
|
|
width: dialogInputWidth,
|
|
|
|
|
height: SizeConfig
|
|
|
|
|
.getHeightMultiplier(
|
|
|
|
|
height:
|
|
|
|
|
dialogHeight) *
|
|
|
|
|
30,
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD3,
|
|
|
|
|
textInputAction:
|
|
|
|
|
TextInputAction.next,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit3,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
keyboardType:
|
|
|
|
|
TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(
|
|
|
|
|
context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD4);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(
|
|
|
|
|
focusD4);
|
|
|
|
|
verifyAccountFormValue[
|
|
|
|
|
'digit3'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator:
|
|
|
|
|
validateCodeDigit)),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.symmetric(
|
|
|
|
|
vertical: 2, horizontal: 5),
|
|
|
|
|
width: dialogInputWidth,
|
|
|
|
|
height: SizeConfig
|
|
|
|
|
.getHeightMultiplier(
|
|
|
|
|
height:
|
|
|
|
|
dialogHeight) *
|
|
|
|
|
30,
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD4,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
controller: digit4,
|
|
|
|
|
keyboardType:
|
|
|
|
|
TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(
|
|
|
|
|
context),
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD4);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
verifyAccountFormValue[
|
|
|
|
|
'digit4'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator:
|
|
|
|
|
validateCodeDigit)),
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.all(5),
|
|
|
|
|
width: SizeConfig.realScreenWidth * 0.16,
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD3,
|
|
|
|
|
textInputAction: TextInputAction.next,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
controller: digit3,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(context),
|
|
|
|
|
onSaved: (val) {},
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD4);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD4);
|
|
|
|
|
verifyAccountFormValue['digit3'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator: validateCodeDigit)),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.all(5),
|
|
|
|
|
width: SizeConfig.realScreenWidth * 0.16,
|
|
|
|
|
child: TextFormField(
|
|
|
|
|
focusNode: focusD4,
|
|
|
|
|
maxLength: 1,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
style: buildTextStyle(),
|
|
|
|
|
controller: digit4,
|
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
|
decoration:
|
|
|
|
|
buildInputDecoration(context),
|
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
|
FocusScope.of(context)
|
|
|
|
|
.requestFocus(focusD4);
|
|
|
|
|
},
|
|
|
|
|
onChanged: (val) {
|
|
|
|
|
if (val.length == 1) {
|
|
|
|
|
verifyAccountFormValue['digit4'] =
|
|
|
|
|
val.trim();
|
|
|
|
|
checkValue();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
validator: validateCodeDigit)),
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(12.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).validationMessage +
|
|
|
|
|
' ',
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
displayTime,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
)
|
|
|
|
|
]),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
))),
|
|
|
|
|
);
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
),
|
|
|
|
|
Column(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.validationMessage +
|
|
|
|
|
' ',
|
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
letterSpacing: -0.48,
|
|
|
|
|
color: Color(0xFF2B353E),
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth(
|
|
|
|
|
width: dialogWidth) *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
displayTime,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth(
|
|
|
|
|
width: dialogWidth) *
|
|
|
|
|
3.5,
|
|
|
|
|
)
|
|
|
|
|
])
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
})),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextStyle buildTextStyle() {
|
|
|
|
|
return TextStyle(
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 3,
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 2.5,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -316,7 +392,6 @@ class SMSOTP {
|
|
|
|
|
digit3.text.toString() +
|
|
|
|
|
digit4.text.toString());
|
|
|
|
|
this.isClosed = true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -341,7 +416,7 @@ class SMSOTP {
|
|
|
|
|
displayTime = this.getSecondsAsDigitalClock(this.remainingTime);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Future.delayed(Duration(seconds: 1), () {
|
|
|
|
|
Future.delayed(Duration(seconds: 1), () {
|
|
|
|
|
if (this.remainingTime > 0) {
|
|
|
|
|
if (isClosed == false) {
|
|
|
|
|
startTimer(setState);
|
|
|
|
|
|