Movatterモバイル変換


[0]ホーム

URL:


camera 0.11.4copy "camera: ^0.11.4" to clipboard
camera: ^0.11.4 copied to clipboard

2.5k

Metadata

A Flutter plugin for controlling the camera. Supports previewing the camera feed, capturing images and video, and streaming image buffers to Dart.

More...

Camera Plugin#

pub package

A Flutter plugin for iOS, Android and Web allowing access to the device cameras.

AndroidiOSWeb
SupportSDK 24+iOS 13.0+Seecamera_web

Features#

  • Display live camera preview in a widget.
  • Snapshots can be captured and saved to a file.
  • Record video.
  • Add access to the image stream from Dart.

Setup#

iOS#

Add two rows to theios/Runner/Info.plist:

  • one with the keyPrivacy - Camera Usage Description and a usage description.
  • and one with the keyPrivacy - Microphone Usage Description and a usage description.

If editingInfo.plist as text, add:

<key>NSCameraUsageDescription</key><string>your usage description here</string><key>NSMicrophoneUsageDescription</key><string>your usage description here</string>

Android#

The endorsedcamera_android_camerax implementation of the camera plugin built with CameraX hasbetter support for more devices thancamera_android, but has some limitations; please seethis listfor more details. If you wish to use thecamera_android implementation of the camera pluginbuilt with Camera2 that lacks these limitations, please followthese instructions.

If you wish to allow image streaming while your app is in the background, there are additional steps required;please seethese instructions for more details.

Web integration#

For web integration details, see thecamera_web package.

Handling Lifecycle states#

As of version0.5.0 of the camera plugin, lifecycle changes are no longer handled by the plugin. This means developers are now responsible to control camera resources when the lifecycle state is updated. Failure to do so might lead to unexpected behavior (for example as described in issue#39109). Handling lifecycle changes can be done by overriding thedidChangeAppLifecycleState method like so:

@overridevoid didChangeAppLifecycleState(AppLifecycleState state) {  final CameraController? cameraController = controller;  // App state changed before we got the chance to initialize.  if (cameraController == null || !cameraController.value.isInitialized) {    return;  }  if (state == AppLifecycleState.inactive) {    cameraController.dispose();  } else if (state == AppLifecycleState.resumed) {    _initializeCameraController(cameraController.description);  }}

Handling camera access permissions#

Permission errors may be thrown when initializing the camera controller, and you are expected to handle them properly.

Here is a list of all permission error codes that can be thrown:

  • CameraAccessDenied: Thrown when user denies the camera access permission.

  • CameraAccessDeniedWithoutPrompt: iOS only for now. Thrown when user has previously denied the permission. iOS does not allow prompting alert dialog a second time. Users will have to go to Settings > Privacy > Camera in order to enable camera access.

  • CameraAccessRestricted: iOS only for now. Thrown when camera access is restricted and users cannot grant permission (parental control).

  • AudioAccessDenied: Thrown when user denies the audio access permission.

  • AudioAccessDeniedWithoutPrompt: iOS only for now. Thrown when user has previously denied the permission. iOS does not allow prompting alert dialog a second time. Users will have to go to Settings > Privacy > Microphone in order to enable audio access.

  • AudioAccessRestricted: iOS only for now. Thrown when audio access is restricted and users cannot grant permission (parental control).

Example#

Here is a small example flutter app displaying a full screen camera preview.

import 'package:camera/camera.dart';import 'package:flutter/material.dart';late List<CameraDescription> _cameras;Future<void> main() async {  WidgetsFlutterBinding.ensureInitialized();  _cameras = await availableCameras();  runApp(const CameraApp());}/// CameraApp is the Main Application.class CameraApp extends StatefulWidget {  /// Default Constructor  const CameraApp({super.key});  @override  State<CameraApp> createState() => _CameraAppState();}class _CameraAppState extends State<CameraApp> {  late CameraController controller;  @override  void initState() {    super.initState();    controller = CameraController(_cameras[0], ResolutionPreset.max);    controller        .initialize()        .then((_) {          if (!mounted) {            return;          }          setState(() {});        })        .catchError((Object e) {          if (e is CameraException) {            switch (e.code) {              case 'CameraAccessDenied':                // Handle access errors here.                break;              default:                // Handle other errors here.                break;            }          }        });  }  @override  void dispose() {    controller.dispose();    super.dispose();  }  @override  Widget build(BuildContext context) {    if (!controller.value.isInitialized) {      return Container();    }    return MaterialApp(home: CameraPreview(controller));  }}

For a more elaborate usage example seehere.

2.57k
likes
150
points
560k
downloads

Publisher

verified publisherflutter.dev

Weekly Downloads

Metadata

A Flutter plugin for controlling the camera. Supports previewing the camera feed, capturing images and video, and streaming image buffers to Dart.

Repository (GitHub)
View/report issues
Contributing

Topics

#camera

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

camera_android_camerax,camera_avfoundation,camera_platform_interface,camera_web,flutter,flutter_plugin_android_lifecycle

More

Packages that depend on camera

Packages that implement camera

Metadata

2.57k
likes
150
points
560k
downloads

Publisher

verified publisherflutter.dev

Weekly Downloads

Metadata

A Flutter plugin for controlling the camera. Supports previewing the camera feed, capturing images and video, and streaming image buffers to Dart.

Repository (GitHub)
View/report issues
Contributing

Topics

#camera

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

camera_android_camerax,camera_avfoundation,camera_platform_interface,camera_web,flutter,flutter_plugin_android_lifecycle

More

Packages that depend on camera

Packages that implement camera

Back


[8]ページ先頭

©2009-2026 Movatter.jp