I'm using the MediaPlugin to capture photos however, I'd like to offer the option of picking an image from the library or taking a photo (as per the choice on native iOS).
Here's the MediaPlugin:
Here's iOS native with the option to select from camera roll bottom left:
Is it possible to 'embed' the MediaPlugin camera in to a frame so that I can add a button? This will be need to be cross-platform.
Thanks!
Is it possible to 'embed' the MediaPlugin camera in to a frame so that I can add a button?
Impossible , MediaPlugin create its own view with camera function , there is no method to access that view and customize control on it , i'm afraid you have to create your own implementation and then customize the camera roll on each platform.
Refer
https://stackoverflow.com/a/36419992/8187800
https://github.com/jamesmontemagno/MediaPlugin/issues/778
https://github.com/jamesmontemagno/MediaPlugin/issues/802
Answers
Impossible , MediaPlugin create its own view with camera function , there is no method to access that view and customize control on it , i'm afraid you have to create your own implementation and then customize the camera roll on each platform.
Refer
https://stackoverflow.com/a/36419992/8187800
https://github.com/jamesmontemagno/MediaPlugin/issues/778
https://github.com/jamesmontemagno/MediaPlugin/issues/802
Thanks @ColeX