Most of apps need some sort of selection buttons, but AFAIK Xamarin Forms don't offer XAML/C# support for radio buttons. Has anyone implemented such functionality in Xamarin.Forms projects for all three platforms? Does it require custom renderer? I am writing a very simple sample and didn't expect to get stuck at such simple UI elements. I would like my sample to stay minimalistic so I'd rather avoid writing much custom code, but I can't figure out how else I can implement radio and radio buttons.
A related question: what would be the best practice to include UI elements that don't have support in Xamarin.Forms XAML. Doing independent layouts for each platform is against Xamarin.Forms concept, so that's the recommended way to handle such scenarios in a cross-platform XAML?
Thanks in advance