fixed ios editor placeholder font (#4009)

This commit is contained in:
Andrei 2018-10-15 23:19:38 +03:00 коммит произвёл kingces95
Родитель dd0bb71ace
Коммит 385b20680b
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,9 @@ namespace Xamarin.Forms.Platform.iOS
void UpdateFont()
{
Control.Font = Element.ToUIFont();
var font = Element.ToUIFont();
Control.Font = font;
_placeholderLabel.Font = font;
}
void UpdateKeyboard()