如何在react-native ART对象上使用setNativeProps()?

时间:2017-12-30 14:24:14

标签: react-native graphics

我想在setNativeProps()上使用<Surface>,就像这样:

render = () => (
  <Surface
    ref = {ref => this.surfaceRef = ref}
  />
)

moveSurface (x,y) => {
  this.surfaceRef.setNativeProps({
    transform: {[translateX: x}, {translateY: y}]
  })
}

这不起作用,因为ART组件似乎都没有实现setNativeProps。我认为至少Surface会实现此功能,因为它扩展了Component

背景: 我用react-native-svg做了这个(类似的)并取得了成功。但我需要更多的fps。 ART比react-native-svg更高效,所以我想看看ART如何使用setNativeProps并将其与react-native-svg进行比较。

0 个答案:

没有答案