From bbab81bf88ba8c2e1427bc251699f2a1b837e3c9 Mon Sep 17 00:00:00 2001 From: Andrew KeepCoding Date: Wed, 19 Jun 2024 23:15:36 +0900 Subject: [PATCH] docs: Remove redundant spaces in sample code (cherry picked from commit 62c17679c7bdd8cafe4ba46cec7b32297667a459) --- doc/fluent-getting-started.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/fluent-getting-started.md b/doc/fluent-getting-started.md index 894ce218f..a8c7ee037 100644 --- a/doc/fluent-getting-started.md +++ b/doc/fluent-getting-started.md @@ -26,25 +26,25 @@ The step-by-step process to enable Fluent design styles within an existing Uno P 1. Add the `XamlControlsResources` resource dictionary to your application resources inside `App.xaml`. This step is the same as required for WinUI 2 UWP apps. ```xml - - - - - - + + + + + + ``` Or, if you have other existing application-scope resources, add `XamlControlsResources` at the top (before other resources) as a merged dictionary: ```xml - - - - - - - - - - + + + + + + + + + + ```