SLVZ.MAUI.SystemUI
1.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SLVZ.MAUI.SystemUI --version 1.0.3
NuGet\Install-Package SLVZ.MAUI.SystemUI -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SLVZ.MAUI.SystemUI" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SLVZ.MAUI.SystemUI" Version="1.0.3" />
<PackageReference Include="SLVZ.MAUI.SystemUI" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SLVZ.MAUI.SystemUI --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SLVZ.MAUI.SystemUI, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SLVZ.MAUI.SystemUI@1.0.3
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SLVZ.MAUI.SystemUI&version=1.0.3
#tool nuget:?package=SLVZ.MAUI.SystemUI&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SLVZ.MAUI.SystemUI
That does this package do
- Handle Edge-to-Edge in Android
- Handle Back-Button-Press in Android
- Get system default theme
- Change statusbar and navigation bar color
1. Edge-to-Edge handler
Native application
Set the shell directly in AppShell.cs inside AppShell():
public AppShell()
{
InitializeComponent();
Edge2EdgeHandler.SetShell(this);
}
Done ✅
Hybrid blazor application
Set the page directly in MainPage.cs inside MainPage():
public MainPage()
{
InitializeComponent();
Edge2EdgeHandler.SetPage(this);
}
Done ✅
You can also use this method in native application and set every page that laoded
2. Back press handler
In Android 16 and up the public override void OnBackPressed() function does not work.
Initialize
Initialize handler from MainActivity.cs in OnCreate
BackPressHandler.Initialize();
How to use?
You can use handler wherever you want
BackPressHandler.OnBackPressed += (o,e) =>
{
//Do something
};
Done ✅
3. Get system default theme
How to use?
var theme = ITheme.SystemTheme;
This will return an AppTheme variable
4. Set Statusbar and Navigationbar color
They require AppTheme and Color
ITheme.SetStatusBarColor(color, theme);
ITheme.SetNavigationBarColor(color, theme);
👨💻 Author: SLVZ
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-android36.0 is compatible. net10.0-windows10.0.19041 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0-android36.0
- Microsoft.Maui.Controls (>= 10.0.20)
-
net10.0-windows10.0.19041
- Microsoft.Maui.Controls (>= 10.0.20)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.