1

任何人都知道如何覆盖样式表react-native-calendar并在标记的日子里实现红色X而不是defaults red circle背景 https://github.com/wix/react-native-calendars

在此处输入图像描述

我希望那些红色圆圈是一个红十字

4

2 回答 2

0

您可以更改 MarkedDatas 的 'selectedstyle' 属性。例子:

   markedDates={
                {
                  '2020-02-10': {selected: true, selectedColor: 'red'},
                  '2020-02-19': {selected: true, selectedColor: 'red'},
                  '2020-02-21': {selected: true, selectedColor: 'red'},
                  '2020-02-24': {selected: true, selectedColor: 'red'},
                  '2020-02-29': {selected: true, selectedColor: 'red'},
                }
               }
于 2020-02-05T04:11:09.270 回答
0

如果您仔细查看文档“自定义标记允许您使用自定义样式自定义每个标记”。我猜你会用图像或 svg 图形替换背景。

<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',
        },
      }
    }}}
/>
于 2018-08-30T06:04:38.397 回答