Code Blue

Results 3 comments of Code Blue

This just happened to our clients yesterday, can any one please address the issue

`TextEditingController controller = TextEditingController();` ` InternationalPhoneNumberInput( inputBorder: InputBorder.none, maxLength: Platform.isAndroid? 12 : 20, onInputChanged: (PhoneNumber number) { userDetail.phoneNumber = number.phoneNumber.toString(); controller.selection = TextSelection.collapsed(offset: controller.text.length); }, textFieldController: controller, formatInput: true, )...

I was told the above code worked on iPhone 11 Pro max..