I am struggling to find the cross-platform answer to native link detection in labels. In Android, it seems to be TextView's AutoLink, which is set up in my custom renderer subclass of LabelRenderer. But in iOS, you have to do it through UITextView's dataDetectorTypes which is the Xam.Forms equivalent of an Entry/Editor. So how do I make a Label-esque View in XF such that on Android it uses LabelRenderer but on iOS it uses EditorRenderer (multi-line support is necessary). I started to subclass a XF View and write custom bindings that would wire up to either a XF Editor on iOS or a XF Label on Android, but that just started to feel wrong.
Then I tried to just subclass Editor for both, but my attempts to make that look/behave like a static Label on Android were a mess (this has to work as a ListView DataTemplate and one thing I found odd was that it was confusing HasUnevenRows height when the ListViewCachingStrategy was set to Recycle).
I also started to do custom ViewRenderers per platform but that seemed like a total mess because you basically don't get to inherit any of the goodness that comes with LabelRenderer / EditorRenderer and you're forced to recreate it all... which I wasn't getting good results with either.
It seems like there should be an easy way in XF to support each platforms' native link detection in a single View?