react-native-calendars
Version:
React Native Calendar Components
48 lines (47 loc) • 1.47 kB
JavaScript
import { StyleSheet } from 'react-native';
import * as defaultStyle from '../../../style';
import constants from '../../../commons/constants';
export default function styleConstructor(theme = {}) {
const appStyle = { ...defaultStyle, ...theme };
return StyleSheet.create({
container: {
alignSelf: 'stretch',
alignItems: 'center'
},
base: {
width: 32,
height: 32,
alignItems: 'center'
},
today: {
backgroundColor: appStyle.todayBackgroundColor,
borderRadius: 16
},
selected: {
backgroundColor: appStyle.selectedDayBackgroundColor,
borderRadius: 16
},
text: {
fontSize: appStyle.textDayFontSize,
fontFamily: appStyle.textDayFontFamily,
fontWeight: appStyle.textDayFontWeight,
color: appStyle.dayTextColor,
backgroundColor: 'rgba(0, 0, 0, 0)',
marginTop: constants.isAndroid ? 4 : 6,
...appStyle.textDayStyle
},
todayText: {
color: appStyle.todayTextColor
},
selectedText: {
color: appStyle.selectedDayTextColor
},
disabledText: {
color: appStyle.textDisabledColor
},
inactiveText: {
color: appStyle.textInactiveColor
},
...(theme['stylesheet.day.basic'] || {})
});
}