0 purchases
account picker plus
account_picker_plus #
This Flutter plugin prompts user to pick an Email or a Phone number saved on device without requiring extra permission
It is a lightweight plugin that does not require extra permission.
This plugin does not require any special device permission.
This currently works for Android only.
Usage to request Phone #
String phoneNumber = await AccountPickerPlus.phoneHint();
print(phoneNumber);
copied to clipboard
Usage to request Email #
List<String>? email = await AccountPickerPlus.emailHint();
print(email);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.