I am using the Picker control to show answers to a question, the problem is when the questions are very long they are shown in the following way.
Open some way to increase the size of the picker so that the complete answers are shown?
this is my code:
<Frame HasShadow="True" OutlineColor="Black" CornerRadius="10">
<StackLayout>
<Label FontSize="Small" FontAttributes="Bold" Text="8. Para un adecuado manejo de riesgos necesitamos conocer" TextColor="#2c3e50"/>
<Picker x:Name="picker8" Title="Seleccione su respuesta">
<Picker.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>a) Los estándares y procedimientos dispuestos para nuestra actividad</x:String>
<x:String>b) Estadísticas de accidentes a nivel nacional</x:String>
<x:String>c) Los peligros y riesgos a los que estamos expuestos</x:String>
<x:String>d) A y C</x:String>
</x:Array>
</Picker.ItemsSource>
</Picker>
</StackLayout>
</Frame>