zy-react-native-calendars
Version:
React Native Calendar Components
38 lines (35 loc) • 899 B
JavaScript
import {StyleSheet} from 'react-native';
import * as defaultStyle from '../style';
const STYLESHEET_ID = 'stylesheet.calendar-list.main';
export default function getStyle(theme={}) {
const appStyle = {...defaultStyle, ...theme};
return StyleSheet.create({
container: {
backgroundColor: appStyle.calendarBackground
},
placeholder: {
backgroundColor: appStyle.calendarBackground,
alignItems: 'center',
justifyContent: 'center'
},
placeholderText: {
fontSize: 30,
fontWeight: '200',
color: appStyle.dayTextColor
},
calendar: {
paddingLeft: 15,
paddingRight: 15
},
staticHeader: {
position: 'absolute',
left: 0,
right: 0,
top: 0,
backgroundColor: appStyle.calendarBackground,
paddingLeft: 15,
paddingRight: 15
},
...(theme[STYLESHEET_ID] || {})
});
}