camera 0.5.2+1  camera: ^0.5.2+1 copied to clipboard
camera: ^0.5.2+1 copied to clipboard
A Flutter plugin for getting information about and controlling the camera on Android and iOS. Supports previewing the camera feed, capturing images, capturing video, and streaming image buffers to dart.
0.5.2+1 #
- Fix bug that prevented video recording with audio.
0.5.2 #
- Added capability to disable audio for the CameraController. (e.g.CameraController(_, _, enableAudio: false);)
0.5.1 #
- Can now be compiled with earlier Android sdks below 21 when
<uses-sdk tools:overrideLibrary="io.flutter.plugins.camera"/>has been added to the projectAndroidManifest.xml. For sdks below 21, the plugin won't be registered and calls to it will throw aMissingPluginException.
0.5.0 #
- Breaking Change This plugin no longer handles closing and opening the camera on Android
lifecycle changes. Please use WidgetsBindingObserverto control camera resources on lifecycle changes. See example project for example usingWidgetsBindingObserver.
0.4.3+2 #
- Bump the minimum Flutter version to 1.2.0.
- Add template type parameter to invokeMethodcalls.
0.4.3+1 #
- Catch additional Exceptions from Android and throw asCameraExceptions.
0.4.3 #
- Add capability to prepare the capture session for video recording on iOS.
0.4.2 #
- Add sensor orientation value to CameraDescription.
0.4.1 #
- Camera methods are ran in a background thread on iOS.
0.4.0+3 #
- Fixed a crash when the plugin is registered by a background FlutterView.
0.4.0+2 #
- Fix orientation of captured photos when camera is used for the first time on Android.
0.4.0+1 #
- Remove categories.
0.4.0 #
- Breaking Change Change iOS image stream format to ImageFormatGroup.bgra8888fromImageFormatGroup.yuv420.
0.3.0+4 #
- Fixed bug causing black screen on some Android devices.
0.3.0+3 #
- Log a more detailed warning at build time about the previous AndroidX migration.
0.3.0+2 #
- Fix issue with calculating iOS image orientation in certain edge cases.
0.3.0+1 #
- Remove initial method call invocation from static camera method.
0.3.0 #
- Breaking change. Migrate from the deprecated original Android Support Library to AndroidX. This shouldn't result in any functional changes, but it requires any Android apps using this plugin to also migrate if they're using the original support library.
0.2.9+1 #
- Fix a crash when failing to start preview.
0.2.9 #
- Save photo orientation data on iOS.
0.2.8 #
- Add access to the image stream from Dart.
- Use cameraController.startImageStream(listener)to process the images.
0.2.7 #
- Fix issue with crash when the physical device's orientation is unknown.
0.2.6 #
- Update the camera to use the physical device's orientation instead of the UI orientation on Android.
0.2.5 #
- Fix preview and video size with satisfying conditions of multiple outputs.
0.2.4 #
- Unregister the activity lifecycle callbacks when disposing the camera.
0.2.3 #
- Added path_provider and video_player as dev dependencies because the example uses them.
- Updated example path_provider version to get Dart 2 support.
0.2.2 #
- iOS image capture is done in high quality (full camera size)
0.2.1 #
- Updated Gradle tooling to match Android Studio 3.1.2.
0.2.0 #
- Added support for video recording.
- Changed the example app to add video recording.
A lot of breaking changes in this version:
Getter changes:
- Removed isStarted
- Renamed initializedtoisInitialized
- Added isRecordingVideo
Method changes:
- Renamed capturetotakePicture
- Removed start(the preview starts automatically wheninitializeis called)
- Added startVideoRecording(String filePath)
- Removed stop(the preview stops automatically whendisposeis called)
- Added stopVideoRecording
0.1.2 #
- Fix Dart 2 runtime errors.
0.1.1 #
- Fix Dart 2 runtime error.
0.1.0 #
- Breaking change. Set SDK constraints to match the Flutter beta release.
0.0.4 #
- Revert regression of CameraController.capture()introduced in v. 0.0.3.
0.0.3 #
- Improved resource cleanup on Android. Avoids crash on Activity restart.
- Made the Future returned by CameraController.dispose()andCameraController.capture()actually complete on Android.
0.0.2 #
- Simplified and upgraded Android project template to Android SDK 27.
- Moved Android package to io.flutter.plugins.
- Fixed warnings from the Dart 2.0 analyzer.
0.0.1 #
- Initial release