似乎没有一种方法可以独立创建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 }