We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c36fb6 commit c927193Copy full SHA for c927193
app/containers/UIKit/MultiSelect/MultiSelectContent.tsx
@@ -10,7 +10,6 @@ import styles from './styles';
10
import { useTheme } from '../../../theme';
11
import { IItemData } from '.';
12
import { debounce } from '../../../lib/methods/helpers/debounce';
13
-import { isIOS } from '../../../lib/methods/helpers';
14
import { useActionSheet } from '../../ActionSheet';
15
16
interface IMultiSelectContentProps {
@@ -73,7 +72,7 @@ export const MultiSelectContent = React.memo(
73
72
onChangeText={handleSearch}
74
placeholder={I18n.t('Search')}
75
inputStyle={{ backgroundColor: colors.surfaceLight }}
76
- bottomSheet={isIOS}
+ bottomSheet={true}
77
onSubmitEditing={() => {
78
setTimeout(() => {
79
hideActionSheet();
0 commit comments