样式表中的语法问题

时间:2019-07-16 20:52:37

标签: css react-native react-native-android expo react-native-ios

我的模拟器出现以下错误:

  

意外令牌(71:6)

与它的样式部分有关。经过一整天的编码,我需要用另一双眼睛看一下。 const样式和最后一个分号用红色下划线。

我删除了逗号,分号最初所在的地方,并将它们放在其他地方,但没有运气。目前,它们位于预期的位置。

我希望看到该应用以样式显示。

     const styles = StyleSheet.create(
    {
      container: {
      flex: 1,
      justifyContent: "center"

    },
    animatedHeaderContainer: {
      position: 'absolute',
      top: (Platform.OS == 'ios') ? 20 : 0,
      left: 0,
      right: 0,
      justifyContent: 'center',
      alignItems: 'center'
    },
    headerText: {
      color: 'white',
      fontSize: 22
    },
    item: {
      backgroundColor: '#ff9e80',
      margin: 8,
      height: 45,
      justifyContent: 'center',
      alignItems: 'center'
    },
    itemText: {
      color: 'black',
      fontSize: 16
    } 
  });

0 个答案:

没有答案