Show arrows in calendar (#4745)

* Show arrows in calendar

* Set calendar arrow size platform specific
This commit is contained in:
Elias Nahum 2020-08-28 12:08:10 -04:00 committed by GitHub
parent 288caf5e48
commit 514ba57a8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,6 +165,8 @@ const getDateFontSize = () => {
};
const calendarTheme = memoizeResult((theme) => ({
arrowHeight: Platform.select({ios: 13, android: 26}),
arrowWidth: Platform.select({ios: 8, android: 22}),
calendarBackground: theme.centerChannelBg,
monthTextColor: changeOpacity(theme.centerChannelColor, 0.8),
dayTextColor: theme.centerChannelColor,