Closed pikausp closed 1 year ago
This PR covers the proposals from https://github.com/enisn/Xamarin.Forms.InputKit/issues/348#issue-1664894369 with the exception of FontFamily. I noticed the property was there already and I don't see a need for databinding.
I turned the Value property of RadioButton into bindable to make something like the following possible
Value
RadioButton
<input:RadioButtonGroupView BindableLayout.ItemsSource="{Binding Items}" BindableLayout.ItemTemplate="{StaticResource ItemTemplate}" SelectedItem="{Binding SelectedItem, Mode=TwoWay}"/>
Perfectly done!
Thanks for your contribution 🎉
This PR covers the proposals from https://github.com/enisn/Xamarin.Forms.InputKit/issues/348#issue-1664894369 with the exception of FontFamily. I noticed the property was there already and I don't see a need for databinding.
I turned the
Value
property ofRadioButton
into bindable to make something like the following possible