diff --git a/docs/user-interface/controls/webview.md b/docs/user-interface/controls/webview.md index f8212653db..a390c561a7 100644 --- a/docs/user-interface/controls/webview.md +++ b/docs/user-interface/controls/webview.md @@ -471,7 +471,10 @@ For more information about configuring a ## Inspect a WebView on Mac Catalyst -To use Safari developer tools to inspect the contents of a `WebView` on Mac Catalyst requires you to add the `com.apple.security.get-task-allow` key, of type `Boolean`, to the entitlements file of your app for its debug build. For more information about entitlements, see [Entitlements](~/ios/entitlements.md). +To use Safari developer tools to inspect the contents of a on Mac Catalyst requires you to add the `com.apple.security.get-task-allow` key, of type `Boolean`, to the entitlements file of your app for its debug build. For more information about entitlements, see [Entitlements](~/ios/entitlements.md). + +> [!NOTE] +> A .NET MAUI app created using .NET 8 will already contain the `com.apple.security.get-task-allow` entitlement for its debug build on Mac Catalyst. To add an entitlements file to your .NET MAUI app project, add a new XML file named *Entitlements.Debug.plist* to the *Platforms\\MacCatalyst* folder of your app project. Then add the following XML to the file: diff --git a/docs/user-interface/fonts.md b/docs/user-interface/fonts.md index ae0fb296a0..f62514220e 100644 --- a/docs/user-interface/fonts.md +++ b/docs/user-interface/fonts.md @@ -99,6 +99,39 @@ Label label2 = new Label }; ``` +::: moniker range=">=net-maui-8.0" + +On Android, the following system fonts can be consumed by setting them as the value of the `FontFamily` property: + +- monospace +- serif +- sans-serif (or sansserif) +- sans-serif-black (or sansserif-black) +- sans-serif-condensed (or sansserif-condensed) +- sans-serif-condensed-light (or sansserif-condensed-light) +- sans-serif-light (or sansserif-light) +- sans-serif-medium (or sansserif-medium) + +For example, the monospace system font can be consumed with the following XAML: + +```xaml +