Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/PopoverWithMeasuredContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function PopoverWithMeasuredContent(props) {
but we can't measure its dimensions without first rendering it.
*/
<View
style={styles.invisible}
style={styles.invisiblePopover}
onLayout={measurePopover}
>
{props.children}
Expand Down
6 changes: 6 additions & 0 deletions src/styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -2553,6 +2553,12 @@ const styles = (theme) => ({
opacity: 0,
},

invisiblePopover: {
position: 'absolute',
opacity: 0,
left: -9999,

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey ✋
Coming from #56014, this has caused a layout bug, since invisiblePopover was still taking up some space
This was resolved by adjusting it's vertical position using top: -999 so it's outside the viewable area

},

containerWithSpaceBetween: {
justifyContent: 'space-between',
width: '100%',
Expand Down