https://github.com/jfversluis/Plugin.Maui.ScreenBrightness
Plugin.Maui.ScreenBrightness provides the ability to get or set the screen brightness inside a .NET MAUI application.
https://github.com/jfversluis/Plugin.Maui.ScreenBrightness
android brightness dotnet dotnet-maui ios maui
Last synced: 5 days ago
JSON representation
Plugin.Maui.ScreenBrightness provides the ability to get or set the screen brightness inside a .NET MAUI application.
- Host: GitHub
- URL: https://github.com/jfversluis/Plugin.Maui.ScreenBrightness
- Owner: jfversluis
- License: mit
- Created: 2023-03-13T19:57:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T15:39:25.000Z (3 months ago)
- Last Synced: 2025-04-01T02:51:10.211Z (about 1 month ago)
- Topics: android, brightness, dotnet, dotnet-maui, ios, maui
- Language: C#
- Homepage:
- Size: 8.22 MB
- Stars: 46
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet-maui - Plugin.Maui.ScreenBrightness - square)](https://github.com/jfversluis/Plugin.Maui.ScreenBrightness/stargazers)|[](https://github.com/jfversluis/Plugin.Maui.ScreenBrightness/commits) (Plugins)
README

# Plugin.Maui.ScreenBrightness
`Plugin.Maui.ScreenBrightness` provides the ability to get or set the screen brightness inside a .NET MAUI application.
## Install Plugin
[](https://www.nuget.org/packages/Plugin.Maui.ScreenBrightness/)
Available on [NuGet](http://www.nuget.org/packages/Plugin.Maui.ScreenBrightness).
Install with the dotnet CLI: `dotnet add package Plugin.Maui.ScreenBrightness`, or through the NuGet Package Manager in Visual Studio.
## API Usage
`Plugin.Maui.ScreenBrightness` provides the `ScreenBrightness` class that has a single property `Brightness` that you can get or set.
You can either use it as a static class, e.g.: `ScreenBrightness.Default.Brightness = 1` or with dependency injection: `builder.Services.AddSingleton(ScreenBrightness.Default);`