Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit 9df69e8

Browse files
authored
Merge pull request #83 from ndastur/patch-1
Correct from Obsolete method
2 parents 488bb05 + b9950e7 commit 9df69e8

File tree

1 file changed

+1
-1
lines changed
  • Recipes/xamarin-forms/Controls/display-pdf/DisplayPDF/DisplayPDF

1 file changed

+1
-1
lines changed

Recipes/xamarin-forms/Controls/display-pdf/DisplayPDF/DisplayPDF/CustomWebView.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace DisplayPDF
44
{
55
public class CustomWebView : WebView
66
{
7-
public static readonly BindableProperty UriProperty = BindableProperty.Create<CustomWebView, string> (p => p.Uri, default(string));
7+
public static readonly BindableProperty UriProperty = BindableProperty.Create(nameof(Uri), typeof(string), typeof(CustomWebView), default(string));
88

99
public string Uri {
1010
get { return (string)GetValue (UriProperty); }

0 commit comments

Comments
 (0)