Reputation: 443
I am working on a Xamarin.Forms App in which I need to display the current camera stream in order to shoot a photo from inside the app. Has anyone an advice on how to implement that? Is that easily possible?
Thanks!
Edit: I found an awesome sample project from Xamarin doing exactly what I need :) https://xamarin.com/prebuilt/moments
Upvotes: 2
Views: 3636
Reputation: 333
It depends on how much integration you need. You can start with something simple like: https://github.com/jamesmontemagno/Xamarin.Plugins/tree/master/Media
If that doesn't do what you need, you will need to create a custom renderer on each platform. It isn't too difficult but its more work.
Upvotes: 1