bug fixed

This commit is contained in:
nutchayut
2025-01-31 18:09:31 +07:00
parent 50fb227c52
commit 16c55eba77

View File

@@ -391,32 +391,34 @@ class _RegisterDataState extends State<RegisterData> {
Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
isPassport? "English name_passport".tr(): "English name".tr(),
Row(
children: [
Text(
isPassport? "English name_passport".tr(): "English name".tr(),
style: GoogleFonts.kanit(
color: Color(0xff565656),
fontSize: 15,
),
),Spacer()
],
),
TextField(
style: GoogleFonts.kanit(
color: Color(0xff565656),
fontSize: 15,
fontSize: 14,
),
),
Expanded(
child: TextField(
style: GoogleFonts.kanit(
color: Color(0xff565656),
fontSize: 14,
),
inputFormatters: <TextInputFormatter>[FilteringTextInputFormatter.allow(RegExp('[a-z A-Z]'))],
keyboardType: TextInputType.text,
textAlign: TextAlign.right,
controller: nameEnEditText,
decoration: InputDecoration(
hintText: '',
suffixIcon: Icon(
Icons.arrow_forward_ios_rounded,
size: 15,
color: Colors.grey,
),
border: InputBorder.none,
inputFormatters: <TextInputFormatter>[FilteringTextInputFormatter.allow(RegExp('[a-z A-Z]'))],
keyboardType: TextInputType.text,
textAlign: TextAlign.right,
controller: nameEnEditText,
decoration: InputDecoration(
hintText: '',
suffixIcon: Icon(
Icons.arrow_forward_ios_rounded,
size: 15,
color: Colors.grey,
),
border: InputBorder.none,
),
),
// Expanded(