In my Xamarin forms project, It gives me this kind of obsolete warning how to fix this
here my code
public class CustomWebView : WebView
{
public static readonly BindableProperty UriProperty =
BindableProperty.Create<CustomWebView, string>(p => p.Uri, default(string));
public string Uri
{
get => (string) GetValue(UriProperty);
set => SetValue(UriProperty, value);
}
}
how to fix this