Simon Tran
Simon Tran
Found a fix https://github.com/wix/react-native-calendars/issues/2182#issuecomment-2276605921 > Managed to fix this issue by forcing the calendar width > > ``` > const MyCalendar = () => { > const [width, setWidth] =...
hi @void-hr I don't have the rights to edit the Assignees
I managed to get some more information on the issue The line that caused the crash is `name.toLowerCase()` when `name` is a string that contains an accent "é" or an...
Managed to fix this issue by forcing the calendar width ``` const MyCalendar = () => { const [width, setWidth] = useState(); return ( setWidth(e.nativeEvent.layout.width)}> ); }; ```