有没有办法用react-native-calendars来样式化day标题容器的背景?我已经检查了样式表,除了更改整个背景的颜色之外,我找不到任何可以更改颜色的方法,这是我不想做的。
发布于 2020-06-22 18:50:43
您可以在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'
}
}
}
}}
/>https://stackoverflow.com/questions/62510780
复制相似问题