Unplanned
Last Updated: 16 May 2025 16:27 by Chris Burtch
Chris Burtch
Created on: 16 May 2025 07:12
Category: DatePicker
Type: Bug Report
1
DatePicker: [Android] The text in the month, day spinners wraps when scrolling and using maui 9.0.60 and above

the text in the spinner wraps when scrolling the spinner. 

The issue happens in Time, TimeSpan, Date and DateTime pickers with day, month, hour spinners. 

The issue happens in maui 9.0.60 and 9.0.70 versions.

It works with maui 9.0.50 and lower versions 

1 comment
Chris Burtch
Posted on: 16 May 2025 16:27

I found that it also affected RadListPickers. In my example, the ItemsSource was an array of strings that were numbers:

<telerik:RadListPicker.ItemsSource>
    <x:Array Type="{x:Type x:String}">
        <x:String>1</x:String>
        <x:String>5</x:String>
        <x:String>10</x:String>
        <x:String>15</x:String>
        <x:String>20</x:String>
        <x:String>25</x:String>
        <x:String>30</x:String>
        <x:String>40</x:String>
        <x:String>50</x:String>
        <x:String>75</x:String>
        <x:String>100</x:String>
    </x:Array>
</telerik:RadListPicker.ItemsSource>