Flow Promise此类型与undefined undefined不兼容

时间:2017-06-18 04:29:41

标签: react-native flowtype exponent expo

获取警告enter image description here

在线:

enter image description here

使用Flow.js v.0.48.0。 代码示例:

$near

2 个答案:

答案 0 :(得分:3)

找到黑客解决方案:

this.valueAccessor = selectValueAccessor(this, valueAccessors);

答案 1 :(得分:-4)

Async适合失败者......这是一个承诺,所以只需实施一个then并去吃饭。 :)



  componentDidMount () {
    Font.loadAsync({
      'open-sans-bold': require('./assets/fonts/OpenSans-Bold.ttf'),
    }).then(() => this.setState({fontLoaded: true}))
  }