After some research, I don't think this is possible for a universal collector.
You will most likely have a simpler time by simply flipping your own selection control in the Forms code using an interactive label that displays a list of choices.
I managed to style the date or time using styles in the styles.xml file of Android, but since Android does not have a built-in widget widget, I suppose Forms rolls its own list of pickers, t find a dialog widget for a theme that resizes text in the list.
For DatePicker, I can simply add the following to the main style element in styles.xml:
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
and then add a new style in style.xml
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog"> <item name="android:textSize">60sp</item> </style>
The above resizes the text for a DatePicker (no custom renderer is required). In addition, the rendering for client selection is a bit wrong ... it's actually just a visual editing of a text field that displays the selected item and allows you to open the selection list by click.
I know that this is not a solution, but simply an indication of what I found when checking this, and the assumption that, most likely, it is easiest to use the Picks Picker type if you want such a setting.
source share