question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Agenda not rendering

See original GitHub issue

I’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:closed
  • Created 6 years ago
  • Comments:14

github_iconTop GitHub Comments

51reactions
hszetocommented, Mar 28, 2018

I final got it working. Need to set a height.

render(){
  return(
    <View style={{height: 600}}>
        <Agenda />
    </View>
  );
}
17reactions
jgtorrejoncommented, Mar 26, 2018

@hszeto i don’t know if that is the problem, but try removing the View tag.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found