Merge pull request #4 from MaxMa04/develop

Remove secure text entry setting for iOS and add launch configuration…
This commit is contained in:
Max Mannstein 2025-07-22 16:04:09 +02:00 committed by GitHub
commit 5c3e0b87c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET MAUI",
"type": "maui",
"request": "launch",
"preLaunchTask": "maui: Build"
}
]
}

View File

@ -504,7 +504,7 @@ public static class MauiProgram
#endif
#if IOS
handler.PlatformView.BorderStyle = UITextBorderStyle.None;
handler.PlatformView.SecureTextEntry = false;
// handler.PlatformView.SecureTextEntry = false;
#endif
}