I am thinking if i can change font size for placeholder on EntryCell
without change fontSize
for Text on EntryCell
?
Is There away to change font size for Placeholder without change font size for Text
Code = new EntryCell { Label = "Code:*", Text = "", Keyboard = Keyboard.Default, Placeholder = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" };
Here is a custom renderer for android. Here I'm modifying the HintTextColor(placeholder). You can modify the font in a similar way.
Unfortunately, no.
There is no API in Forms to change the Placeholder font size. Instead, you could create your own custom control to do this, or use a custom renderer to modify the placholder in the native view.