We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the allDaysEvents section, if the event covers more than one day completely, the custom event color is considered invalid and does not work.
<Calendar events={events} locale={'de'} date={currentDate} height={screenHeight} overlapOffset={30} onPressCell={pressCell} mode={'week'} onPressEvent={(e) => { clickEvent(e); }} hourStyle={{fontSize: 14}} weekStartsOn={1} onChangeDate={(date) => { setCurrentDate(date[0]); }} scrollOffsetMinutes={350} eventCellStyle={(event) => { if (event.isGroup == 1) { return ({ backgroundColor: '#303030' }) } else { return ({backgroundColor: event.color}) } }} />
The text was updated successfully, but these errors were encountered:
@omercandemir A happy new year! Sorry for my slow response. I'll leave my comments on the PR.
Sorry, something went wrong.
For anyone who want to control the color, please use the theme functionality.
theme
https://github.com/acro5piano/react-native-big-calendar?tab=readme-ov-file#theme
No branches or pull requests
In the allDaysEvents section, if the event covers more than one day completely, the custom event color is considered invalid and does not work.
The text was updated successfully, but these errors were encountered: