React Native获取TextInput值并使用OnBlur或OnFocus方法在同一视图上使用



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

我的还原器存在问题。

相关内容

  • 没有找到相关文章

最新更新