-
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
Fixed Microsoft.Maui.Controls 8.0.90 (Latest stable) Ruins Entry Controls #25006
Conversation
Hey there @NirmalKumarYuvaraj! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
(It would be great to cover the test scenario in #25038.) |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
{ | ||
App.WaitForElement("button"); | ||
App.Tap("button"); | ||
VerifyScreenshot(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Triggered the build, it should generate the reference snapshot for this test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, already added the test snapshot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the images
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/rebase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rebase isn't quite correct
…araj/maui into fix-24783" This reverts commit 8d50a3c, reversing changes made to 15000b8.
…araj/maui into fix-24783" This reverts commit 15000b8, reversing changes made to daef7ed.
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
|
Root Cause
The TextBox style applied resulted in an incorrect column count, causing the deleteButton column to shift and misalign the layout.
Description of Change
The code was updated to correctly identify the deleteButton column, setting its width to 0 when the clearButton is not visible and to Auto when it is visible to ensure proper layout.
Validated the behaviour in the following platforms
Fixes
fixes #24783
fixes #25038
Output
Before
After