How do I put an image on the right side of the Picker
(DropDownList) so I can differentiate it from the other Entry
fields, to have a selection object appearance?
<Picker x:Name="picTpEndereco" HorizontalOptions="FillAndExpand" Title="Tipo de Endereço" SelectedIndex="{Binding EndTipo}">
<Picker.Items>
<x:String>Comercial</x:String>
<x:String>Residencial</x:String>
<x:String>Outro</x:String>
</Picker.Items>
</Picker>