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.

12 lines (9 loc) 276 B
import {useRef} from 'react'; export const useRefs = () => { const dropdownButtonRef = useRef(); // button ref to get positions const dropDownFlatlistRef = useRef(null); // ref to the drop down flatlist return { dropdownButtonRef, dropDownFlatlistRef, }; };