xamarin.forms - Font size in Picker control in xamarin forms -
i surprised see picker control not have font size property set font size. had need set font size picker control. kindly suggest how set font size?
the underlaying scrollable xamarin.form
picker list handled native controls such ios uipickerview
, android's datepicker
|timepicker
, ... , access these controls internal pickerrender
class.
you can create custom renderers each of targeted platforms , create custom views each of them.
example:
on ios need create custom uipickerview
class , override viewfor
method , return uilabel
each row has custom font attributes assigned.
on android, create standard picker, datepicker
, , findviewbyid
access various edittext
s make picker , assign textsize
property each custom font size.
Comments
Post a Comment