UNPKG

@duocvo/react-native-select-dropdown

Version:

This package was forked from https://github.com/AdelRedaa97/react-native-select-dropdown. Allow multiple select dropdown with search and custom styles.

10 lines (9 loc) 215 B
export const getDropdownHeight = (dropdownStyle, dataLength) => { if (dropdownStyle && dropdownStyle.height) { return dropdownStyle.height; } else { if (dataLength == 0) { return 150; } } };