react-native-customisable-combobox
Version:
A simple react native combobox
53 lines (52 loc) • 1.05 kB
TypeScript
export declare const styles: {
mainContainer: {
width: "100%";
alignItems: "flex-start";
};
container: {
flexDirection: "row";
justifyContent: "space-between";
alignItems: "center";
padding: number;
};
border: {
borderWidth: number;
borderColor: string;
};
focus: {
borderColor: string;
};
text: {
width: "100%";
height: "100%";
marginLeft: number;
};
dropdown: {
left: number;
right: number;
backgroundColor: string;
borderWidth: number;
borderColor: string;
borderRadius: number;
position: "absolute";
zIndex: number;
elevation: number;
};
label: {
marginBottom: number;
fontSize: number;
};
error: {
color: string;
};
searchContainer: {
padding: number;
};
search: {};
item: {
padding: number;
};
noSearchItem: {
padding: number;
};
};