|
|
|
|
@ -59,7 +59,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
|
|
|
|
|
backgroundColor: AppColor.neutral100,
|
|
|
|
|
initialValue: widget.uEmail,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
hintText: "email@example.com",
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
hintStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.emailAddress,
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
@ -73,7 +75,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
|
|
|
|
|
backgroundColor: AppColor.neutral100,
|
|
|
|
|
initialValue: widget.uPhoneNo,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
hintText: "05xxxxxxxx",
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
hintStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: TextInputType.phone,
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
@ -87,7 +91,9 @@ class _UpdateUserContactInfoBottomSheetState extends State<UpdateUserContactInfo
|
|
|
|
|
backgroundColor: AppColor.neutral100,
|
|
|
|
|
initialValue: widget.uExtensionNo,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
hintText: "1234",
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
hintStyle: AppTextStyles.textFieldLabelStyle,
|
|
|
|
|
textInputType: const TextInputType.numberWithOptions(decimal: true),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
|