Closed
Description
Environment
Environment:
OS: macOS High Sierra 10.13.5
Node: 6.9.4
Yarn: Not Found
npm: 3.10.10
Watchman: 4.9.0
Xcode: Xcode 9.4 Build version 9F1027a
Android Studio: 2.2 AI-145.3537739
Packages: (wanted => installed)
react: ^16.3.1 => 16.4.1
react-native: ^0.55.0 => 0.55.4
Description
I am using graphQL for data query. There is modal which show listing of data with header, footer and listing in middle. Listing is child component of modal box, challenge is that on each time hide and show of modal box mount and unmount on listing component which will cause to delay response to show.
Could anybody help me about this to prevent this?
Reproducible Demo
<Modal
onRequestClose={this.props.onRequestClose}
visible={this.props.isVisible}>
<View style={{flex:1}}><ListingComponent/></View>
</Modal>