我想从TextInput选择器中获取值(使用react-native-material-dropdown),并使用blur方法在下拉列表关闭时执行计算,下拉列表是数字。
<Dropdown
label='meals'
data={data}
onChangeText={this.onRegularMealChange.bind(this)}
value={this.props.regularMeal}
/>
想做类似的事情:
<View>
<Text>{amount * this.props.regularMeal}</Text>
</View>
</View>