Not verified case added

This commit is contained in:
2026-01-16 15:49:40 +05:30
parent 5c959ba15c
commit 89569ab1c3

View File

@@ -103,7 +103,12 @@ class _VerificationScreenState extends State<VerificationScreen> {
Navigator.of(context).pop(true);
} catch (e) {
setState(() {
if(e.toString().contains("NOT_VERIFIED")){
_statusMessage = "SIM details not found. Please ensure your mobile number is registered with the bank.";
}
else{
_statusMessage = e.toString();
}
_isVerifying = false;
_verificationFailed = true;
});