Last updated:
0 purchases
account manager plugin
account_manager_plugin #
This plugin allows Flutter apps to obtain all accounts registered in the user's device.
Usage #
Support only for Android.
Added permission in the Manifests:
<uses-permission
android:name="android.permission.GET_ACCOUNTS"
android:maxSdkVersion="22" />
copied to clipboard
If the plugin is invoked on iOS, it will crash your app. In checked mode, we assert that the platform should be Android.
Use it by specifying action:
if (platform.isAndroid) {
try {
List<dynamic> accounts = await AccountManagerPlugin.getAccounts;
} on PlatformException {}
}
copied to clipboard
Getting Started #
Lab: Write your first Flutter app
Cookbook: Useful Flutter samples
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.