CameraPage constructor

const CameraPage({
  1. Key? key,
  2. required List<CameraDescription>? cameras,
  3. Widget? shutterWidget,
  4. Color? bottomStripColor,
  5. Widget? completedWidget,
  6. Widget? noImageWidget,
  7. Color? imageCountBgColor,
  8. TextStyle? imageCountTextStyle,
  9. Widget? cameraLoadingWidget,
  10. Color? previewPageAppBarColor,
  11. Text? previewPageAppBarTextWidget,
  12. Color? previewPageBottomAreaColor,
  13. Widget? selectImageWidget,
  14. Widget? deSelectImageWidget,
})

Implementation

const CameraPage(
    {super.key,
    required this.cameras,
    this.shutterWidget,
    this.bottomStripColor,
    this.completedWidget,
    this.noImageWidget,
    this.imageCountBgColor,
    this.imageCountTextStyle,
    this.cameraLoadingWidget,
    this.previewPageAppBarColor,
    this.previewPageAppBarTextWidget,
    this.previewPageBottomAreaColor,
    this.selectImageWidget,
    this.deSelectImageWidget});