native_camera 0.0.2 native_camera: ^0.0.2 copied to clipboard
Straightforward setup for the camera package, if you'd rather not deal with all the design work.
Straightforward setup for the camera package, if you'd rather not deal with all the design work.
Features #
Pick image or video with hardware camera or gallery and specify options.
Getting started #
See setup for camera and image_picker to continue
Usage #
Import package
import 'package:native_camera/native_camera.dart';
final CameraFile? picked = await NativeCamera.launch(
context,
allowGallery: true,
cameraMode: CameraMode.both,
);