From 15e57d5c6b916ba30ea46632421372d1f8c15769 Mon Sep 17 00:00:00 2001 From: Dominik Titl <78549750+morning4coffe-dev@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:17:24 +0200 Subject: [PATCH] docs: Add Tip for Toolkit StatusBar Extensions (cherry picked from commit 1b744a9efd8983d622fda7fcbedaf4dd0e8b31f8) --- doc/articles/guides/status-bar-theme-color.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/articles/guides/status-bar-theme-color.md b/doc/articles/guides/status-bar-theme-color.md index ac6e81632c82..2736af1b65d8 100644 --- a/doc/articles/guides/status-bar-theme-color.md +++ b/doc/articles/guides/status-bar-theme-color.md @@ -6,6 +6,9 @@ uid: Uno.Tutorials.StatusBarThemeColor The [`UISettings.ColorValuesChanged` event](https://learn.microsoft.com/uwp/api/windows.ui.viewmanagement.uisettings.colorvalueschanged) can be used to listen for notifications when dark mode is enabled or disabled at the system level. +> TIP +> For easier customization of the StatusBar, consider using the [StatusBar Extensions](xref:Toolkit.Helpers.StatusBarExtensions) from Uno.Toolkit, as it simplifies the process of updating the StatusBar. + ## Example The complete sample code can be found in the [StatusBarThemeColor sample in Uno.Samples GitHub repository](https://github.com/unoplatform/Uno.Samples/tree/master/UI/StatusBarThemeColor).