Add constructor in WkWebViewRenderer to use custom configuration (#6578)

This commit is contained in:
Ravinder Jangra 2019-07-04 05:35:55 +05:30 коммит произвёл Samantha Houts
Родитель d004178e5e
Коммит bdc4113f44
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -24,6 +24,10 @@ namespace Xamarin.Forms.Platform.iOS
{ {
} }
public WkWebViewRenderer(WKWebViewConfiguration config) : base(RectangleF.Empty, config)
{
}
WebView WebView => Element as WebView; WebView WebView => Element as WebView;
public VisualElement Element { get; private set; } public VisualElement Element { get; private set; }