0 purchases
builk camera
Builk_Camera #
Builk_Camera is a Flutter package that allows you to display cameras on iOS and Android
platforms based on the camera package ,flutter_image_compress and native_device_orientation package.
Installation #
First, add camera as a dependency in your pubspec.yaml file.
iOS #
Add two rows to the ios/Runner/Info.plist:
one with the key Privacy - Camera Usage Description and a usage description.
and one with the key Privacy - Microphone Usage Description and a usage description.
If editing Info.plist as text, add:
<key>NSCameraUsageDescription</key>
<string>your usage description here</string>
<key>NSMicrophoneUsageDescription</key>
<string>your usage description here</string>
copied to clipboard
Android #
Change the minimum Android sdk version to 21 (or higher) in your android/app/build.gradle file.
minSdkVersion 21
copied to clipboard
To use Builk_Camera in your Flutter project, add it to your pubspec.yaml file:
dependencies:
builk_camera: any
copied to clipboard
Example #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.