Flutter permission_handler 权限插件的使用详解
编译环境:Flutter 版本v1.12.hotfix9 dart SDK:2.7.2
1 pubspec.yaml中引入:
# 权限
permission_handler: ^3.2.0
ios中info.plist配置(根据权限情况使用):
<!-- Permission options for the `location` group --> <key>NSLocationWhenInUseUsageDescription</key> <string>Need location when in use</string> <key>NSLocationAlwaysAndWhenInUseUsageDescription</key> <string>Always and when in use!</string> <key>NSLocationUsageDescription</key> <string>Older devices need location.</string> <key>NSLocationAlwaysUsageDescription</key> <string>Can I haz location always?</string> <!-- Permission options for the `mediaLibrary` group --> <key>NSAppleMusicUsageDescription</key> <string>Music!</string> <key>kTCCServiceMediaLibrary</key> <string>media</string> <!-- Permission options for the `calendar` group --> <key>NSCalendarsUsageDescription</key> <string>Calendars</string> <!-- Permission options for the `camera` group --> <key>NSCameraUsageDescription</key> <string>camera</string> <!-- Permission options for the `contacts` group --> <key>NSContactsUsageDescription</key> <string>contacts</string> <!-- Permission options for the `microphone` group --> <key>NSMicrophoneUsageDescription</key> <string>microphone</string> <!-- Permission options for the `speech` group --> <key>NSSpeechRecognitionUsageDescription</key> <string>speech</string> <!-- Permission options for the `sensors` group --> <key>NSMotionUsageDescription</key> <string>motion</string> <!-- Permission options for the `photos` group --> <key>NSPhotoLibraryUsageDescription</key> <string>photos</string> <!-- Permission options for the `reminder` group --> <key>NSRemindersUsageDescription</key> <string>reminders</string>
2 代码中具体使用:
void chosePhoto(int index) async { PermissionHandler().requestPermissions( [PermissionGroup.photos, PermissionGroup.camera]).then((map) { if (map[PermissionGroup.photos] == PermissionStatus.granted || map[PermissionGroup.camera] == PermissionStatus.granted) { chosePhotoFromPhone(context, index); } }); }
3 总结:
在使用的过程中可能会出现androidX 或者Swift语言的适配,这时候需要根据具体情况进行修改。
到此这篇关于Flutter permission_handler 权限插件的使用的文章就介绍到这了,更多相关Flutter permission_handler 权限插件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Apache Cordova Android原理应用实例详解
这篇文章主要为大家介绍了Apache Cordova Android原理应用实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-11-11android 自定义圆角button效果的实例代码(自定义view Demo)
这篇文章主要介绍了android 自定义圆角button(自定义View Demo),本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2019-12-12Android RadioGroup和RadioButton控件简单用法示例
这篇文章主要介绍了Android RadioGroup和RadioButton控件简单用法,结合实例形式分析了Android单选按钮控件的基本定义、布局与功能实现技巧,需要的朋友可以参考下2016-07-07Android SharedPreferences存取操作以及封装详解
SharedPreferences是安卓平台上一个轻量级的存储类,用来保存应用的一些常用配置,比如Activity状态,Activity暂停时,将此activity的状态保存到SharedPereferences中;当Activity重载,系统回调方法onSaveInstanceState时,再从SharedPreferences中将值取出2021-11-11Android开发实现实时检测蓝牙连接状态的方法【附源码下载】
这篇文章主要介绍了Android开发实现实时检测蓝牙连接状态的方法,涉及Android针对蓝牙连接状态的监测操作相关实现技巧,需要的朋友可以参考下2017-11-11
最新评论