You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently we noticed that sometimes on android devices the content of active section is not rendered. The reason I found is that the Collapsible component is calling measure function of the view to get the content height. But somehow the function returns undefined values, so the height of content is set to 0. It might be related to this issue, but the workarounds didn't help with the issue I got here.
I ended up to use measureInWindow to get the height when measure didn't work.
The text was updated successfully, but these errors were encountered:
Recently we noticed that sometimes on android devices the content of active section is not rendered. The reason I found is that the Collapsible component is calling
measure
function of the view to get the content height. But somehow the function returns undefined values, so the height of content is set to 0. It might be related to this issue, but the workarounds didn't help with the issue I got here.I ended up to use
measureInWindow
to get the height whenmeasure
didn't work.The text was updated successfully, but these errors were encountered: