Skip to content

Commit

Permalink
feat(webview2): add feature configuration for ios inspectable
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpinedam committed Sep 2, 2024
1 parent 0a56fe8 commit 15ed6af
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Uno.UI/FeatureConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,19 @@ public static class WebView
#endif
}

public static class WebView2
{
#if __IOS__
/// <summary>
/// Sets wether the <see cref="WebView2"/> object is inspectable or not.
/// </summary>
/// <remarks>
/// On iOS and Catalyst this means that developers can use the Safari Web Developers tools to debug apps with <see cref="WebView2"/>
/// </remarks>
public static bool IsInspectable { get; set; };
#endif
}

public static class Xaml
{
/// <summary>
Expand Down

0 comments on commit 15ed6af

Please sign in to comment.