如何在React Native中创建单个视图节点

时间:2018-12-14 00:52:23

标签: reactjs react-native

似乎没有办法像下面这样独立创建React Native View节点:

var Label = new Label();

React Native中的所有内容似乎都在UIManager中排队。 我的问题是:有什么方法可以使用React Native做到以上几点?

类似以下内容:

const viewNode = new UiManager.View();

代替:

export function Something() {
  return <View/> // here is just a virtual dom node, not real native view instance
}

0 个答案:

没有答案