Place image in Picker Xamarin Forms

Asked

Viewed 155 times

0

How do I place an image on the right side of the Picker (Dropdownlist) so that you can differentiate from other fields Entry, to have an appearance of a selection object ?

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

1 answer

0

Hello, Andreeh.

With the standard Picker you won’t be able to. You’ll need to develop a Bindable Picker to have the effect you want. I personally have never made a Picker that uses image, but I can indicate this post from Studyxnet who talks about bindable picker.

Then put it to the guys if you got it.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.