Agenda not rendering
See original GitHub issueI’m running: react-native 53.0 and react-native-calendars 1.17.4
Agenda is not being rendered. All I have is a blank screen.
render(){
return(
<Agenda />
);
}
But this works.
render(){
return(
<CalendarList />
);
}
Any idea what am I doing wrong or missing? My app has been npm run eject
. Not sure if that matters…
Issue Analytics
- State:
- Created 6 years ago
- Comments:14
Top Results From Across the Web
ReactNative Agenda not rendering any items - Stack Overflow
I am using the Agenda from wix/react-native-calendars in my code. The problem is its not showing any items the way its intended to...
Read more >react-native-calendars - npm
An advanced Agenda component that can display interactive listings for calendar day items. <Agenda // The list of items that have to be...
Read more >Agenda | RNC
API. items. the list of items that have to be displayed in agenda. If you want to render item as empty date the...
Read more >Create customized and shareable calendars in React Native
The Calendar component lets you render a traditional calendar element that supports month navigation. There are no mandatory props here ...
Read more >Full calendar is not rendering on subsequent AJAX calls afte
p><strong>Expected behavior</strong> The first ajax call works perfectly. The data is returned and the calendar behaves as expected, updating the events ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I final got it working. Need to set a height.
@hszeto i don’t know if that is the problem, but try removing the View tag.