rjantz3
rjantz3
It is not clear in the documentation that you cannot have a naming convention of *ViewModel and *View. After stumbling around a while I realized I needed `.Replace ("ViewModel", "View");`...
Would you be ok with either text or images exclusively? [Apple design guidelines](https://developer.apple.com/design/human-interface-guidelines/ios/controls/segmented-controls/) discourage mixing both in the segmented control. > Avoid mixing text and images in a segmented control....
@1iveowl Does Xamarin.Forms display vector icons natively? Last I knew it didn't. Feel free to update my knowledge and/or suggest a library that does.
@1iveowl I didn't have a good way thought out yet. Go ahead if you do.
There is currently no way. Are you trying to use this as a three state control?
@1iveowl Do you have an opinion or a different idea? What if the selected index is less than 0 that would clear any selected segment or do you have a...
I agree that it feels like a hack for a primary setting mechanism but wouldn’t it be a side effect of any other way? > On May 25, 2019, at...
Did you try the suggestions at https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/ios/scrollview-content-touches ? Do you have a small sample project to reproduce this behavior?
@NiveshZA This is a good suggestion. May I pull this into my branch?
I did eventually get this to work after realizing that the parameters on the server were expecting an array of enum values instead of a typed set. I then built...