Skip to content

Commit

Permalink
fix: reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremybarbet committed Apr 1, 2020
1 parent 147ecdb commit 16781a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,8 @@ export class Modalize<FlatListItem = any, SectionListItem = any> extends React.C

return (
<View style={[s.modalize, { elevation }]} pointerEvents={pointerEvents}>
{this.renderFloatingComponent()}

<TapGestureHandler
ref={this.modal}
maxDurationMs={100000}
Expand All @@ -848,7 +850,6 @@ export class Modalize<FlatListItem = any, SectionListItem = any> extends React.C
{this.renderOverlay()}
</View>
</TapGestureHandler>
{this.renderFloatingComponent()}
</View>
);
};
Expand Down

2 comments on commit 16781a7

@vforvasile
Copy link
Contributor

Choose a reason for hiding this comment

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

hey @jeremybarbet, can you revert this? It breaks Android visibility.

@jeremybarbet
Copy link
Owner Author

@jeremybarbet jeremybarbet commented on 16781a7 Apr 8, 2020

Choose a reason for hiding this comment

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

Oops, I tested it and it was working, might have forgotten to test some cases, I will do, sorry about that

Please sign in to comment.