Remove Underline from MaterialPicker Xamarin Forms - xamarin.forms

How to remove the underline from Material Picker Control in Xamarin Forms ?
Control.BorderStyle = UIKit.UITextBorderStyle.None;
has no effect

Related

How to set or implement automationId property to NavigationPage class or Navigation back button in xamarin forms?

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.

How to remove ripple effect from Collection view item in Xamarin Forms?

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.

Highlight current week of Datepicker in Xamarin forms

How we can highlight all dates of current week by changing the background color in Xamarin forms?

Xamarin Forms Icon set in Content View

How to set Icon and Title in xamarin.forms ContentView ?
Is it Possible in xaml?

Get text of picker in xamarin forms

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];

Resources