How to remove the underline from Material Picker Control in Xamarin Forms ?
Control.BorderStyle = UIKit.UITextBorderStyle.None;
has no effect
Related
I need to set AutomationId in the navigation back button in order to automate the testing. I am using Xamarin forms default navigation back button, so where I need to add the AUtomationId.
Please help me to solve this issue.
I have a collection view in my Xamarin forms project. in iOS it is working fine But in Android I am getting a ripple effect when I select item from collection view.And the selection mode is single. How can I remove this ripple effect from android. Please help.
This question has been reported and fixed. https://github.com/xamarin/Xamarin.Forms/pull/7615
It would remove ripple effect on CollectionView item when SelectionMode is None.
How we can highlight all dates of current week by changing the background color in Xamarin forms?
How to set Icon and Title in xamarin.forms ContentView ?
Is it Possible in xaml?
I am using picker in Xamarin Forms and I want seleted text of picker in a string variable. Like-
string name = picker.SeletedItem.Text;(in WPF)
How to access text of picker in Xamarin Forms?
Use :
picker.Items[picker.SelectedIndex];