-
Notifications
You must be signed in to change notification settings - Fork 13
Installation guide
Fabricio Bertani edited this page Jul 21, 2023
·
1 revision
Plugin.Maui.ScreenSecurity
is available via NuGet, grab the latest package and install it on your solution:
Install-Package Plugin.Maui.ScreenSecurity
In your MauiProgram
class add the following using statement:
using Plugin.Maui.ScreenSecurity;
Finally, add the default instance of the plugin as a singleton to inject it in your code late:
builder.Services.AddSingleton<IScreenSecurity>(ScreenSecurity.Default);