-
-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨🚧 Multi camera support #303
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…multi-cam # Conflicts: # .vscode/launch.json # README.md # android/src/main/kotlin/com/apparence/camerawesome/cameraX/CameraAwesomeX.kt # android/src/main/kotlin/com/apparence/camerawesome/cameraX/CameraXState.kt # example/pubspec.yaml # ios/Classes/CamerawesomePlugin.m # lib/src/orchestrator/models/sensors.dart
@istornz thank you for your hard work. quick 2 questions:
|
I am also interested in this feature, is there an update? Also will we have the ability to save the multi camera photos merged and separate? Thank you. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
CamerAwesome is now able to show multiple sensors preview! 📹
This is the most requested feature in the official camera plugin ⭐️
This PR add multi camera feature for iOS (Android will be developed soon by @apalala-dev ).
How it's work?
CamerAwesome now provide a list of
Sensor
. You just need what you want to display (front, back camera or telephoto, wide angle camera etc.).First
Sensor
provided in the array will be displayed in fullscreen (like CamerAwesome do now), each others sensors will be added in a floating preview which can be dragged by the user.Demo
This example show sensors:
Example
This sample code, show back sensor in fullscreen (because set at first).
User will seen a floating preview which is showing front camera (user will be able to drag floating preview to change it's position).
Roadmap
budget
on iOS).This PR will close #131
Checklist
Before creating any Pull Request, confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
).flutter analyze
without any issues.Breaking Change
🛠 My feature contain breaking change.
Sensors
enum has been renamedSensorPosition
.sensors
attribute inCameraAwesomeBuilder
now accept a list ofSensor
.