react-native中是否有大纲属性?

时间:2018-11-29 04:57:01

标签: css react-native

Outline属性在CSS中,但是我试图在react-native中使用outline属性。 我在使用react-native的outline属性时遇到以下消息。 错误:大纲属性不是有效的样式属性 任何人都可以在React-native中知道CSS的属性而不是CSS的Outline属性,而无需安装其他软件包。 感谢您的合作。

2 个答案:

答案 0 :(得分:0)

style={{
        height: 40,
        width: "95%",
        borderRadius: 20,
        backgroundColor: this.state.boxColor,
        marginHorizontal: 10,
        fontFamily: ConstantFontFamily.defaultFont,
        fontWeight: "bold",
        paddingLeft: 35,
        minWidth:
            Dimensions.get("window").width >= 1100 ? 630 : 393,
        outline: "none"
    }}

答案 1 :(得分:-1)

在 React Native 中,我们不能通过使用 outline: "red 2px solid" 来提供它,而是需要将其分解为单独的样式。可以将其视为我们通过 javascript 对象对其进行样式设置。

const styles = StyleSheet.create({
  button: {
    paddingHorizontal: 10,
    paddingVertical: 5,
    backgroundColor: "#e7622e",
    borderColor: "#fcfdfb",
    borderWidth: 2,
    outlineColor: "#523009",
    outlineStyle: "solid",
    outlineWidth: 4,
  },
  title: {
    color: "white",
  },
});

outlineColor: "#523009", outlineStyle: "solid", outlineWidth: 4 是它理解的属性名称。