Show arrows in calendar (#4745) (#4746)

* Show arrows in calendar

* Set calendar arrow size platform specific

(cherry picked from commit 514ba57a8e)

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
This commit is contained in:
Mattermost Build 2020-08-28 12:58:42 -04:00 committed by GitHub
parent 5f8910004b
commit dccdf1a238
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,