react-native-customisable-combobox
Version:
A simple react native combobox
4 lines (3 loc) • 651 B
TypeScript
import React from "react";
import { ComboboxProps } from "./types";
export declare function Combobox<T extends unknown>({ items, renderItem, labelField, valueField, searchField, style, itemStyle, selectedStyle, value, onChange, searchable, searchPlaceholder, onFocus, onBlur, showItemOnNoSearch, showAlwaysNoSearchItem, renderNoSearchItem, renderSearchIcon, onSearchCallback, onSelectedNotFoundItem, containerRadius, showBorder, dropdownStyle, label, labelStyle, renderLabel, error, errorStyle, renderError, mainContainerStyle, debounceDelay, noFoundItemText, noFoundItemTextStyle, showTextStyle, useFlatList, }: ComboboxProps<T>): React.JSX.Element;