-
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
Fix BoxView not rendering when is hidden on start #21960
Conversation
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
propertyName == BackgroundProperty.PropertyName || | ||
propertyName == CornerRadiusProperty.PropertyName) | ||
Handler?.UpdateValue(nameof(IShapeView.Shape)); | ||
|
||
if(propertyName == IsVisibleProperty.PropertyName) |
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.
Is this necessary?
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.
Strangely enough, it is only necessary for Android. For iOS everything works with only updating Handler?.UpdateValue(nameof(IShapeView.Shape));
when the visibility changes
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
/rebase |
ea05f07
to
60a5b87
Compare
/rebase |
60a5b87
to
2e3f3c9
Compare
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
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.
Added a sample to UITest Update BoxView.cs Update Issue19926.cs
2e3f3c9
to
93dc202
Compare
@jsuarezruiz could you /azp pls? |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
Description of Change
I observed that the BoxView did appear on the screen when the user changed the property
IsVisible
from false to true whenIsVisible = false
was set on the start.This is a hotfix to this PR: #21322
before.mp4
fix.mp4