sparrow_camera 1.0.2 sparrow_camera: ^1.0.2 copied to clipboard
flutter camera
sparrow_camera #
Guide for instalation #
Android #
You need add in app/build.gradle
minSdkVersion 21
IOS #
You need add in info.plist
<key>NSCameraUsageDescription</key>
<string>Can I use the camera please?</string>
<key>NSMicrophoneUsageDescription</key>
<string>Can I use the mic please?</string>
Flutter #
Add package in pubspec.yaml
sparrow_camera: current_version
How to use #
Camera_Camera is widget, you can use anywhere
Example 01
return Scaffold(
body: SparrowCamera(
onFile: (file) => print(file);
maxCount: 6,
maxRecordingTime: 20,
onFile: (file) {
print("filePath=${file.path}");
},
onMessage: (message) {
print("message=$message");
},
onPreview: (file) {
print("file=${file?.path}");
},
)
);
Example 02
return Scaffold(
body: SparrowCamera(
onFile: (file) => print(file);
maxCount: 6,
maxRecordingTime: 20,
onFile: (file) {
print("filePath=${file.path}");
},
onMessage: (message) {
print("message=$message");
},
onPreview: (file) {
print("file=${file?.path}");
},
),
floatingActionButton: FloatingActionButton(
onPressed: (){
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => SparrowCamera(
onFile: (file) {
photos.add(file);
//When take foto you should close camera
Navigator.pop(context);
setState(() {});
},
)))
},
child: Icon(Icons.camera_alt),
),
);
Roadmap 1.0 #
Feature | Progress |
---|---|
Zoom | ✅ |
Flash | ✅ |
CameraSide select | ✅ |
nullsafety support | ✅ |
Add Exposure controll | |
Add Easy Mode Video | ✅ |
Add Gallery | ✅ |
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.