I just want to set some dates in the calendar to have a certain different background colors, this is the code:
import {Calendar} from 'react-native-calendars';
...
<Calendar
markedDates={{
'2023-05-05': {
color: '#ff0000',
},
'2023-05-06': {
color: '#00ff00',
},
}}
/>
...
But it's not working, why though?
Im using version 1.1279.0

According to the source code in
react-native-calendars, themarkedDatesobject only use following props.If you want background colors on your dates, you can set
selectedastrueand fill inselectedColorprop.