address_input_restrict
This commit is contained in:
parent
220e7c4c9e
commit
85fd7c0b47
@ -1725,6 +1725,11 @@ class PersonalDetailsState extends State<PersonalDetails> {
|
|||||||
enabled: !widget.isViewMode,
|
enabled: !widget.isViewMode,
|
||||||
maxLines: 2,
|
maxLines: 2,
|
||||||
keyboardType: TextInputType.multiline,
|
keyboardType: TextInputType.multiline,
|
||||||
|
inputFormatters: [
|
||||||
|
FilteringTextInputFormatter.allow(
|
||||||
|
RegExp(r"[a-zA-Z0-9\s,.\-/#']"),
|
||||||
|
),
|
||||||
|
],
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: "Address",
|
labelText: "Address",
|
||||||
labelStyle: GoogleFonts.poppins(
|
labelStyle: GoogleFonts.poppins(
|
||||||
|
|||||||
@ -1970,6 +1970,11 @@ class PersonalDetailsState extends State<PersonalDetails> {
|
|||||||
style: GoogleFonts.poppins(fontSize: 12, color: Colors.black),
|
style: GoogleFonts.poppins(fontSize: 12, color: Colors.black),
|
||||||
focusNode: _addressFocusNode,
|
focusNode: _addressFocusNode,
|
||||||
controller: widget.controllers["address"],
|
controller: widget.controllers["address"],
|
||||||
|
inputFormatters: [
|
||||||
|
FilteringTextInputFormatter.allow(
|
||||||
|
RegExp(r"[a-zA-Z0-9\s,.\-/#']"),
|
||||||
|
),
|
||||||
|
],
|
||||||
enabled: !widget.isViewMode,
|
enabled: !widget.isViewMode,
|
||||||
maxLines: 2,
|
maxLines: 2,
|
||||||
keyboardType: TextInputType.multiline,
|
keyboardType: TextInputType.multiline,
|
||||||
|
|||||||
@ -3982,7 +3982,7 @@ class TravellerDetailsState extends State<TravellerDetails> {
|
|||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
" * confirm your passport is valid for next 6 months",
|
" * Confirm your passport is valid for next 6 months ",
|
||||||
style: GoogleFonts.poppins(fontSize: 10),
|
style: GoogleFonts.poppins(fontSize: 10),
|
||||||
),
|
),
|
||||||
IconForVisa(),
|
IconForVisa(),
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
//api url
|
//api url
|
||||||
|
|
||||||
|
//---- NOTE : RELEASE 29 OCT 2025 - Except AUJAS LIVE EVERYTHING MOVED ---
|
||||||
|
|
||||||
/** Note : TSTAT TEST BE URL
|
/** Note : TSTAT TEST BE URL
|
||||||
* incase "adfactor" or "aujas" href means changed to "tstat"
|
* incase "adfactor" or "aujas" href means changed to "tstat"
|
||||||
* File : web/index.html - change below
|
* File : web/index.html - change below
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user