react-native-calendars icon indicating copy to clipboard operation
react-native-calendars copied to clipboard

Agenda stuck in month view - Android - Production build

Open Lewitje opened this issue 7 months ago • 7 comments

react-native: 0.78.0 react-native-calendars: 1.1312.0 (Also tried with patch mentioned in #2610 )

Only happens on Android (version 14, can't reproduce it in Android 16) Only happens in release mode, I can't reproduce it in debug mode.

After clicking around for a while it might open the list view, sometimes it doesnt.

` ...

import {Agenda} from "react-native-calendars"; import { AgendaEntry, AgendaSchedule, DateData, Theme, } from "react-native-calendars/src/types";

...

export const ListScreen: FC = () => { return ( <View style={[styles.container, styles.withDivider]}> <Agenda items={sortedItems} renderEmptyDate={() => (<EmptyListItem />) as any} renderDay={date => ( <Day date={date} onPress={onCreateNewAppointment} /> )} renderItem={renderItem} refreshing={refreshing} minDate={MIN_DATE} maxDate={MAX_DATE} onDayPress={onDayPressCallback} onDayChange={onDayChangeCallback} onRefresh={onRefreshCallback} loadItemsForMonth={loadItemsForMonthCallback} pagingEnabled={true} theme={THEME} reservationsKeyExtractor={({reservation}, index) => reservation?.name || index.toString() } ref={agendaRef} /> </View> </View> ); };

... `

https://github.com/user-attachments/assets/e073c18d-1151-4e14-85bf-5bb5439e94d5

Lewitje avatar May 26 '25 13:05 Lewitje

same issue for me in production. android 15

voulgarakis avatar May 29 '25 07:05 voulgarakis

I am facing the same issue

georgekal2798 avatar Jun 11 '25 09:06 georgekal2798

I have the same problem. Any new on a possible fix?

posymeon avatar Jun 12 '25 13:06 posymeon

Hello,

I am facing the same issue. As @Lewitje already mentioned, this issue appears only in release mode.

knaiskes avatar Jun 13 '25 13:06 knaiskes

Does this fix in https://github.com/wix/react-native-calendars/pull/2640 help?

ssunday avatar Jun 17 '25 14:06 ssunday

Does this fix in #2640 help?

Nope. Tried in release mode, but the issue still exists

voulgarakis avatar Jun 18 '25 07:06 voulgarakis