Skip to content Skip to sidebar Skip to footer

React-native: Loses Selectedvalue When Changing The Label

I'd like to change the labels of the s of my , e.g. when the language changes, triggered by another button (react-redux). key and value should stay

Solution 1:

ran into same issue. You may need to make the selectedValue a string. eg:

selectedValue={this.props.myValue.toString()}

Post a Comment for "React-native: Loses Selectedvalue When Changing The Label"