From dccdf1a23813f9d75607c3b536ae0251f013eca7 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Fri, 28 Aug 2020 12:58:42 -0400 Subject: [PATCH] Show arrows in calendar (#4745) (#4746) * Show arrows in calendar * Set calendar arrow size platform specific (cherry picked from commit 514ba57a8e4f1c0247c76c3222bdcff5bc475c8a) Co-authored-by: Elias Nahum --- 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,