英文:
Change backgroundColor of react-native-calendars
问题
我正在使用react-native-calendars制作一个应用程序。
我想将日历的背景颜色更改为蓝色。
<Calendar
style={{backgroundColor: "blue"}}
/>
我尝试了以下方法,但问题是只有日历的边框变了颜色。
我想要整个日历的背景变成蓝色。
如果您知道解决方法,请回复。
谢谢。
英文:
I'm making an app with react-native-calendars.
I want to change the background color of the calendar to blue.
<Calendar
style={{backgroundColor: "blue"}}
/>
I've tried the following, but the problem is that only the borders of the calendar change.
I want the background of the entire calendar to turn blue.
Please reply if you know a solution.
Thanks.
答案1
得分: 0
<!-- 开始代码段:js 隐藏:false 控制台:true Babel:false -->
<!-- 语言:lang-js -->
<日历
样式={{ 背景颜色:'透明' }}
主题={{
日历背景:'透明',
}}
/>
<!-- 结束代码段 -->
将calendarBackground设置为您所需的颜色
英文:
Can you try this ,
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
<Calendar
style={{ backgroundColor: 'transparent' }}
theme={{
calendarBackground: 'transparent',
}}
/>
<!-- end snippet -->
Set calendarBackground to your desired color
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论