Remove secure text entry setting for iOS and add launch configuration for .NET MAUI

This commit is contained in:
Max Mannstein 2025-07-22 16:01:12 +02:00
parent 931d126e8e
commit 0ee468ef8c
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 #endif
#if IOS #if IOS
handler.PlatformView.BorderStyle = UITextBorderStyle.None; handler.PlatformView.BorderStyle = UITextBorderStyle.None;
handler.PlatformView.SecureTextEntry = false; // handler.PlatformView.SecureTextEntry = false;
#endif #endif
} }