From 514ba57a8e4f1c0247c76c3222bdcff5bc475c8a Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Fri, 28 Aug 2020 12:08:10 -0400 Subject: [PATCH] Show arrows in calendar (#4745) * Show arrows in calendar * Set calendar arrow size platform specific --- app/components/autocomplete/date_suggestion/date_suggestion.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/autocomplete/date_suggestion/date_suggestion.js b/app/components/autocomplete/date_suggestion/date_suggestion.js index 65cf0082d..e7b56c5b7 100644 --- a/app/components/autocomplete/date_suggestion/date_suggestion.js +++ b/app/components/autocomplete/date_suggestion/date_suggestion.js @@ -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,