获取错误Range<String.Index>
我的渲染函数非常基本 - 在声明和渲染react-native按钮时我做错了什么?
elment type is invalid: expected a string (for built in components) or a class/function (for composite comonents) but got: undefined
答案 0 :(得分:1)
默认Button组件仅在0.37版本中引入。 https://github.com/facebook/react-native/releases/tag/v0.37.0
答案 1 :(得分:0)
不要忘记括号 - &gt; title = {“Logout”},title = {“Login”}
编辑:nvm,看起来你不需要它们用于react-native按钮。
如果您尝试过以下内容怎么办?
<View style={styles.outer}>
<Button title={isAuthenticated ? "Logout" : "Login"} />
<View />