0

有没有用 react-native-calendars 设置日标题容器的背景?我检查了样式表,除了改变我不想做的整个背景的颜色之外,无论如何都找不到改变颜色的方法。

4

1 回答 1

0

你可以添加样式markedDates

<Calendar
  // Date marking style [simple/period/multi-dot/single]. Default = 'simple'
  markingType={'custom'}
  markedDates={{
    '2018-03-28': {
      customStyles: {
        container: {
          backgroundColor: 'green'
        },
        text: {
          color: 'black',
          fontWeight: 'bold'
        }
      }
    },
    '2018-03-29': {
      customStyles: {
        container: {
          backgroundColor: 'white',
          elevation: 2
        },
        text: {
          color: 'blue'
        }
      }
    }
  }}
/>
于 2020-06-22T10:50:42.827 回答