Bryansq2nt
Bryansq2nt

Reputation: 394

Get phone number in flutter

i am a flutter developer and i am trying to get the mobile phone number of the current phone where the application is running

i try to do it with this plugin : sms_autofill: ^1.2.0 but that code only shows me a dialog to select a phone number, but for that to happen I have to have added my phone number to my google account and I want to get it from the sim, I need to obtain the phone number automatically because it is a requirement of a client, he does not want the user to be able to type it

final SmsAutoFill _autoFill = SmsAutoFill();
     final completePhoneNumber = await _autoFill.hint;
     print(completePhoneNumber);

Upvotes: 3

Views: 7636

Answers (0)

Related Questions