diff --git a/app/containers/UIKit/MultiSelect/index.js b/app/containers/UIKit/MultiSelect/index.js index 6617ecb7b..6aa671a36 100644 --- a/app/containers/UIKit/MultiSelect/index.js +++ b/app/containers/UIKit/MultiSelect/index.js @@ -11,6 +11,7 @@ import TextInput from '../../TextInput'; import { textParser } from '../utils'; import { themes } from '../../../constants/colors'; import I18n from '../../../i18n'; +import { isIOS } from '../../../utils/deviceInfo'; import Chips from './Chips'; import Items from './Items'; @@ -26,6 +27,8 @@ const ANIMATION_PROPS = { }; const animatedValue = new Animated.Value(0); +const behavior = isIOS ? 'padding' : null; + export const MultiSelect = React.memo(({ options = [], onChange, @@ -170,7 +173,7 @@ export const MultiSelect = React.memo(({ - + {showContent ? renderContent() : null}