|
@@ -36,7 +36,7 @@ class VerificationCodeField extends GetView<VerificationCodeFieldController> {
|
|
|
return Row(
|
|
|
children: [
|
|
|
SizedBox(
|
|
|
- width: verificationCodeWidth ?? 215.s,
|
|
|
+ width: verificationCodeWidth ?? 165.s,
|
|
|
child: FISTextField(
|
|
|
uniqueKey: GlobalKey(),
|
|
|
placeHolder: i18nBook.auth.hint4VerificationCode.t,
|
|
@@ -49,7 +49,7 @@ class VerificationCodeField extends GetView<VerificationCodeFieldController> {
|
|
|
width: 5.s,
|
|
|
),
|
|
|
SizedBox(
|
|
|
- width: 100.s,
|
|
|
+ width: 130.s,
|
|
|
height: 48.s,
|
|
|
child: Obx(
|
|
|
() => CustomElevatedButton(
|
|
@@ -75,9 +75,13 @@ class VerificationCodeField extends GetView<VerificationCodeFieldController> {
|
|
|
vertical: 15.s, horizontal: 20.s)),
|
|
|
),
|
|
|
child: Obx(
|
|
|
- () => FISText(
|
|
|
- controller.btnText.value,
|
|
|
- ),
|
|
|
+ () => FISText(controller.btnText.value,
|
|
|
+ style: Storage.currentTheme.normalTextStyle.copyWith(
|
|
|
+ fontSize: Storage
|
|
|
+ .currentTheme.normalTextStyle.fontSize!.s,
|
|
|
+ color: Storage.currentTheme
|
|
|
+ .elevatedButtonLinearGradientStyle.textColor,
|
|
|
+ overflow: TextOverflow.ellipsis)),
|
|
|
)),
|
|
|
))
|
|
|
],
|