Merge pull request #83 from ndastur/patch-1

Correct from Obsolete method
This commit is contained in:
Craig Dunn 2019-12-20 09:23:48 -08:00 коммит произвёл GitHub
Родитель 488bb05e8b b9950e760b
Коммит 9df69e84e9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -4,7 +4,7 @@ namespace DisplayPDF
{
public class CustomWebView : WebView
{
public static readonly BindableProperty UriProperty = BindableProperty.Create<CustomWebView, string> (p => p.Uri, default(string));
public static readonly BindableProperty UriProperty = BindableProperty.Create(nameof(Uri), typeof(string), typeof(CustomWebView), default(string));
public string Uri {
get { return (string)GetValue (UriProperty); }