首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >设置day容器背景的样式

设置day容器背景的样式
EN

Stack Overflow用户
提问于 2020-06-22 16:57:44
回答 1查看 73关注 0票数 0

有没有办法用react-native-calendars来样式化day标题容器的背景?我已经检查了样式表,除了更改整个背景的颜色之外,我找不到任何可以更改颜色的方法,这是我不想做的。

EN

回答 1

Stack Overflow用户

发布于 2020-06-22 18:50:43

您可以在markedDates中添加样式

代码语言:javascript
复制
<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'
        }
      }
    }
  }}
/>
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/62510780

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档