bug fixed
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user