permission_asker
Ein Wrapper für permission_handler, der einen Teil des Boilerplate-Code reduziert, der zum Verwalten von Berechtigungen in unseren Apps erforderlich ist.
Ein Wrapper für permission_handler, der einen Teil des Boilerplate-Code reduziert, der zum Verwalten von Berechtigungen in unseren Apps erforderlich ist.
{"sdk":"flutter"}^6.1.1^1.11.0{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
A wrapper for permission_handler which lifts some of the boilerplate needed to handle permissions in our apps.
Usually, when we need to build our widgets according to the permission status of a certain feature we need to check if the permission is granted or not and ask for it. Since these are async operations we usually need to add some boilerplate to do the right thing at the right time.
In addition to everything that's provided with permission_handler by exposing it, this package provides:
PermissionAsker class which allows to ask permissions and react to the results via the onPermissionData callback.PermissionAskerBuilderclass which allows to build a widget according to the status of a list of permissionsCheck here for setting up your permissions.
Here's an example on how you can use the PermissionAskerBuilder widget
PermissionAskerBuilder(
permissions: [
Permission.location,
Permission.camera,
],
grantedBuilder: (context) => Center(
child: Text('All permissions granted!'),
),
notGrantedBuilder: (context, notGrantedPermissions) => Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text('Not granted permissions:'),
for (final p in notGrantedPermissions)
Text(p.toString())
],
),
),
notGrantedListener: (notGrantedPermissions) => print('Not granted:\n$notGrantedPermissions'),
)