I'm trying to figure out a good way (if there is one) to mix Xamarin.Forms with SignaturePad. Ideally I'll be able to have a signature pad pop up on both Android and iOS - at first I thought I could just use an interface to generate whatever was necessary as a view on each of the platforms and integrate that with a layout, but as near as I can tell there's no way to customize Xamarin.Forms views at that level of detail.
The only other alternative I'm immediately thinking up is a button that uses an interface to run a method on both platforms that would generate a new page that contains the necessary signature views, keeping it kind of 'self-contained' and a bit outside of the whole Xamarin.Forms structure, but even if that's possible I'm not sure how I'd go about doing it (not sure about, say, navigating 'back' to the forms layout/page I originally started from.)
Does anyone have any advice on this front?