Plugin.Maui.ScreenSecurity icon indicating copy to clipboard operation
Plugin.Maui.ScreenSecurity copied to clipboard

Safeguard your .NET MAUI app effortlessly by preventing content exposure, screenshots, and recordings with ease.

Results 6 Plugin.Maui.ScreenSecurity issues
Sort by recently updated
recently updated
newest added

I want to restrict screen sharing, screen recording & screenshot capturing from all the pages of my .NET MAUI application. I tried to use Plugin.Maui.ScreenSecurity. I observed it's working if...

bug

See details: https://github.com/denhaandrei/iOSDisableScreenshot ``` public AppShell() { InitializeComponent(); Navigating += Current_Navigating; Navigated += AppShell_Navigated; } private static bool isSecure = false; private void Current_Navigating(object sender, ShellNavigatingEventArgs e) { var str...

bug

How can I use it with blazor MAUI on Android ? Your example don't work with it

hi, i have an issue ``` ScreenSecurity.Default.ActivateScreenSecurityProtection(); var result = await FilePicker.Default.PickAsync(options); ``` this code works for me. but ``` var result = await FilePicker.Default.PickAsync(options); ScreenSecurity.Default.ActivateScreenSecurityProtection(); ``` screen security will...

question

![image](https://github.com/FabriBertani/Plugin.Maui.ScreenSecurity/assets/82075049/f3b65d4a-ffb2-453e-9c0b-421b828bad15)

question

I had a thought that could potentially be applicable to this plugin. Instead of preventing screenshots/recording, could it be possible to detect when a user has taken such actions? On...

enhancement
good first issue