我想从textInput选择器(使用React-native-Meterial-Dropdown)获取值,并使用Blur方法在下拉下进行计算,该下拉菜单为数字。<<<<<<<<<<<</p>
<Dropdown
label='meals'
data={data}
onChangeText={this.onRegularMealChange.bind(this)}
value={this.props.regularMeal}
/>
想做类似的事情:
<View>
<Text>{amount * this.props.regularMeal}</Text>
</View>
</View>
我的还原器存在问题。