n4kz / react-native-material-dropdown

Material dropdown with consistent behaviour on iOS and Android
Other
732 stars 597 forks source link

How can I fire event listener when dropdown is released? #155

Open chohonest opened 5 years ago

chohonest commented 5 years ago

I would like to get the value from a dropdown and perform calculations the moment the dropdown is released.

<Dropdown label='meals' data={data} onChangeText={this.onRegularMealChange.bind(this)} value={this.props.regularMeal} />

would like to do something like:

`

{amount * this.props.regularMeal}
    </View>
  </View>`