Put image in Picker Xamarin Forms

0

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>
    
asked by anonymous 03.02.2017 / 17:29

1 answer

0

Hello, AndreeH.

With the standard Picker you will not be able to. You will need to develop a Bindable Picker to have the effect you want. I personally have never done a picker that uses image, however I can indicate this post from the StudyXnet that talks about bindable Picker.

Then post it to the staff if you can.

    
24.02.2017 / 13:26