Kureev / react-native-side-menu

Side menu component for React Native
MIT License
2.21k stars 434 forks source link

Can't close after setState from onChange #357

Open dzpt opened 6 years ago

dzpt commented 6 years ago

I don't know why, but after i put setState inside onChange callback, it couldn't close anymore.

Here is the code:

<SideMenu isOpen={this.state.peakOpened} openMenuOffset={layout.peakWidth} menu={this.state.peak} style={pstyle.peak} menuPosition='right' onChange={isOpen => this.changePeak(isOpen)} disableGestures={false}>

changePeak(isOpen) { this.setState({}) }

odarino commented 5 years ago

I faced the same issue, any update for this ?