react-native-multiple-select-pro
Version:
select single, all options
19 lines (17 loc) • 445 B
text/typescript
import type { ViewProps } from 'react-native';
export interface MultiSelectorProps extends ViewProps {
title?: string;
inputBoxHeight?: number;
containerHeight?: any;
bgColor?: string;
buttonBGColor?: string;
buttonTxtColor?: string;
txtColor?: string;
checkboxColor?: string;
dataSet: any;
data?: any;
setData?: any;
buttonName?: string;
hideButtonBGColor?: string;
hideButtonTxtColor?: string;
}