React Native获取TextInput值并使用onBlur或onFocus方法在同一View上使用

时间:2019-02-21 07:53:56

标签: javascript reactjs react-native expo

我想从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>

0 个答案:

没有答案