-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[regression/8.0.0-preview.4.8333] Borderless Entry Handler Not Working in .NET MAUI 8.0 #17448
Comments
yes does not work. |
Hi @mistrypragnesh40. We have added the "s/needs-repro" label to this issue, which indicates that we require steps and sample code to reproduce the issue before we can take further action. Please try to create a minimal sample project/solution or code samples which reproduce the issue, ideally as a GitHub repo that we can clone. See more details about creating repros here: https://github.com/dotnet/maui/blob/main/.github/repro.md This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time. |
Hello, |
Verified this on Visual Studio Enterprise 17.8.0 Preview 2.0(8.0.0-rc.1.23419.4). Repro on Windows 11 and Android 13.0-API33, not repro on iOS 16.4 with below Project: |
Confirmed that this regressed on Android between 8.0.0-preview.3.8149 and 8.0.0-preview.4.8333. #12227 seems sus, though that doesn't explain the Windows issue. |
@samhouts How/When can we expect this fix in a upcoming update? Ive build my app with the latest version of MAUI 8.0.3 on VS2022 Preview. But i still have the borders on android. |
Hello lovely human, thank you for your comment on this issue. Because this issue has been closed for a period of time, please strongly consider opening a new issue linking to this issue instead to ensure better visibility of your comment. Thank you! |
Description
Here is the code.
#if ANDROID
handler.PlatformView.Background = null;
handler.PlatformView.SetBackgroundColor(Android.Graphics.Color.Transparent);
#elif IOS
handler.PlatformView.BackgroundColor = UIKit.UIColor.Clear;
handler.PlatformView.Layer.BorderWidth = 0;
handler.PlatformView.BorderStyle = UIKit.UITextBorderStyle.None;
#endif
});```
Link to public reproduction project repository
No response
Version with bug
8.0.0-preview.4.8333
Is this a regression from previous behavior?
Yes, this used to work in .NET MAUI
Last version that worked well
8.0.0-preview.3.8149
Affected platforms
iOS, Android
Affected platform versions
No response
Did you find any workaround?
Relevant log output
No response
The text was updated successfully, but these errors were encountered: