rz_camera 0.0.1+4 copy "rz_camera: ^0.0.1+4" to clipboard
rz_camera: ^0.0.1+4 copied to clipboard

outdated

A new Flutter RzCamera Package.

RzCamera #

RzCamera Package for Clicking images and taking video with the edit functionality.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  rz_camera: ^0.0.1+4
  1. Import the package and use it in your Flutter App.
import 'package:rz_camera/rz_camera.dart';

Example #

There are a number of properties that you can modify:

  • defaultCamera
  • isLandscapeMandatory
  • isCameraChange
  • imageCallback
  • isImageEdit
  • isImageEditCallback
  • overlayImageWidget
class RzCamera extends StatefulWidget {
  final CameraOrientation cameraOrientation;
  final DefaultCamera defaultCamera;
  final bool isCameraChange;
  final bool isImageEdit;
  final Widget overlayWidget;
  final Function(RzCameraResponse rzCameraResponse) successCallback;

  const RzCamera({
    Key? key,
    this.cameraOrientation = CameraOrientation.any,
    this.defaultCamera = DefaultCamera.back,
    this.isCameraChange = false,
    this.isImageEdit = true,
    required this.overlayWidget,
    required this.successCallback,
  }) : super(key: key);

  @override
  State<RzCamera> createState() => _RzCameraState();
}
enum DefaultCamera { front, back }
enum CameraOrientation { portrait, landscape, any }

Next Goals #

  • Add Operating system Support. Now, you can check with android, in few days support for IOS and Web.

  • Video Record. Record video and Edited video callback and without edit video call back.

  • Add more Features to the package.# RzCamera

2
likes
0
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter RzCamera Package.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, flutter, image, location, path_provider, permission_handler, universal_html

More

Packages that depend on rz_camera