react-native-modal-dropdown icon indicating copy to clipboard operation
react-native-modal-dropdown copied to clipboard

Freeze Android

Open jeanlucdu55 opened this issue 4 years ago • 1 comments

Hi,

We have an issue when trying to open the modal on android (RN 0.62.2), the app freeze and we can't do anything.

We tried binding the onSelect function and setting the state inside the renderRow but nothing works the app still freeze.

<ModalDropdown ref={(el) => (this._dropdown = el)} options={regionsList} onSelect={(regionId, regionName) => this.setLocalRate.bind(regionId, regionName) } renderRow={this._renderRow.bind(this)}> <TouchableOpacity onPress={() => this._dropdown.show()}> <View style={[styles.textFieldContainer, styles.picker]}> <Text style={styles.textFieldItem}>{currentSorting.label}</Text> <Image style={{ height: 15, transform: [{rotate: '90deg'}], }} resizeMode="contain" source={require('../../assets/UI/rightRedArrow.png')} /> </View> </TouchableOpacity> </ModalDropdown>

Thanks for your help,

Théo

jeanlucdu55 avatar May 25 '20 09:05 jeanlucdu55

Hi @jeanlucdu55, have you tried the more up-to-date package from here: https://github.com/siemiatj/react-native-modal-dropdown?

donni106 avatar Jun 22 '20 08:06 donni106