有没有其他方法可以在本机反应中使用 outline:"none" 属性 ?
Is there alternative to use outline:"none" property in react native?
实际上,我已经将样式 {{ width: "100%", outline: "none", height: 50 }} 传递给子组件,我在终端中收到警告该大纲无效 属性。
如果此样式在样式表中声明,则应用程序会因错误而崩溃,因此必须将其声明为内联。
我找不到消除警告的方法,因为本机反应不支持大纲:“none”属性,还有其他替代方法吗?
当您的应用程序在网络上 运行 时,您可以使用 React Native Web 中的 Platform API 仅添加 outline
样式。
类似于:
StyleSheet.create({
textEditStyle: {
Platform.select({
web: {
outline: 'none'
}
}),
... // Other styles go here
}
});
实际上,我已经将样式 {{ width: "100%", outline: "none", height: 50 }} 传递给子组件,我在终端中收到警告该大纲无效 属性。 如果此样式在样式表中声明,则应用程序会因错误而崩溃,因此必须将其声明为内联。 我找不到消除警告的方法,因为本机反应不支持大纲:“none”属性,还有其他替代方法吗?
当您的应用程序在网络上 运行 时,您可以使用 React Native Web 中的 Platform API 仅添加 outline
样式。
类似于:
StyleSheet.create({
textEditStyle: {
Platform.select({
web: {
outline: 'none'
}
}),
... // Other styles go here
}
});