Sadam Hussain

Results 4 comments of Sadam Hussain

I also facing same issue Enter more than 16 digit number delete the last 3 digits.. In UI it shows 16 digit.. on form submit, the value is 17 digit.

Fixed by adding this. ` ` `setCardNumber( $event) { this.model.cardNumber=$event.target.value; }`

I fixed this issue by adding. ` setCardNumber( $event) { this.model.cardNumber=$event.target.value; }`

Try to check the sendSMS permission before calling the sendSMS function. I am using [react-native-permissions](https://github.com/yonahforst/react-native-permissions): sendSMSFunction() { Permissions.checkMultiple(['readSms', 'sendSms']).then((response) => { if (response.readSms == 'authorized' && response.sendSms == 'authorized') this.sendMessage();...