UNPKG

react-native-calendar-strip

Version:

Easy to use and visually stunning calendar component for React Native

60 lines (56 loc) 1.06 kB
/** * Created by bogdanbegovic on 8/26/16. */ import { StyleSheet } from "react-native"; export default StyleSheet.create({ //CALENDAR STYLES calendarContainer: { overflow: "hidden" }, datesStrip: { flexDirection: "row", flex: 1, justifyContent: "space-between" }, calendarDates: { flex: 1, flexDirection: "row", justifyContent: "center", alignItems: "center" }, calendarHeader: { textAlign: "center", fontWeight: "bold", alignSelf: "center" }, iconContainer: { justifyContent: "center", alignItems: "center", alignSelf: "center" }, icon: { resizeMode: "contain" }, //CALENDAR DAY dateContainer: { justifyContent: "center", alignItems: "center", alignSelf: "center" }, dateName: { textAlign: "center" }, weekendDateName: { color: "#A7A7A7", textAlign: "center" }, dateNumber: { fontWeight: "bold", textAlign: "center" }, weekendDateNumber: { color: "#A7A7A7", fontWeight: "bold", textAlign: "center" } });