-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
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
Unable to get the example to work like the demo #31
Comments
The example that you posted looks out of date. Which version are you using? It looks like there's a chance that your date label colors are blending into your background if it's white. Try selecting any blank spots where the dates should be. A screenshot might help troubleshoot. |
In regards to the arrows, I did not see any indication that the arrows were rendering. I changed the calendar to different colors, but still no luck. Is there a current example that I can look at. Thanks. |
It's been a while since I ran the example. It turns out that the height needs to be explicitly set. I pushed a commit updating the example in the Readme as well as the examples folder. Apologies for the oversight. A better approach would be to make this component responsive (see #14). It should automatically set its height based on its width. The dates should scale in size based on its container. Any contributions are welcome. |
It worked. I really appreciate it. Think this is extremely helpful for my current project. I am new to react-native and once I get a better understanding I would love to contribute this awesome project. |
This seems really awesome and would love to try it, but I am having trouble getting it to render properly. I am literately copying the entire example in the example directory. What is rendered is just a month and year. Nothing like the example images show. I know I am probably missing something simple, but if you could kindly explain to me what I am doing wrong.
Currently, I am running the latest react-native version and my code is:
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
ListView
} from 'react-native';
import moment from 'moment';
import CalendarStrip from 'react-native-calendar-strip';
const width = Dimensions.get('window').width;
export class Profile extends Component {
render() {
return (
<CalendarStrip
calendarAnimation={{ type: 'sequence', duration: 30 }}
selection={'background'}
selectionAnimation={{ duration: 300, borderWidth: 2 }}
style={{ paddingTop: 20, paddingBottom: 10 }}
calendarHeaderStyle={{ color: 'white' }}
calendarColor={'#7743CE'}
highlightColor={'#9265DC'}
dateNumberStyle={{ color: 'white' }}
dateNameStyle={{ color: 'white' }}
borderHighlightColor={'white'}
iconLeft={require('../img/left-arrow.png')}
iconRight={require('../img/right-arrow.png')}
iconContainer={{ flex: 0.1 }}
/>
);
}
}
export default Profile;
I wonder what I am doing wrong.
Thanks in Advance.
The text was updated successfully, but these errors were encountered: