# FlutterAppWidgets **Repository Path**: HZKQ/flutter-app-widgets ## Basic Information - **Project Name**: FlutterAppWidgets - **Description**: 杭州科强Flutter组件库-移动端 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 3 - **Created**: 2023-03-05 - **Last Updated**: 2025-09-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # kq_flutter_widgets 杭州科强信息技术有限公司Flutter移动端通用组件库. ## 其它变体的管理 ![](branch_desc.png) ## Start ### ios权限配置 因为组件库扫码和文件选择,需要相机和相册权限,因此如果想提示权限被永久拒绝,需要在项目的Podfile文件 增加以下配置 ```shell post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| # You can remove unused permissions here # for more information: https://github.com/Baseflow/flutter-permission-handler/blob/main/permission_handler_apple/ios/Classes/PermissionHandlerEnums.h # e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ '$(inherited)', ## dart: PermissionGroup.microphone 'PERMISSION_CAMERA=1', 'PERMISSION_PHOTOS=1' ] end flutter_additional_ios_build_settings(target) end end ```