@mustapha-ghlissi/react-native-select-picker
Version:
React Native Select Picker: Reanimated dropdown select compatible with Android, IOS and Web
65 lines • 1.59 kB
TypeScript
declare const styles: {
dropdownInputContainer: {
borderRadius: number;
overflow: "hidden";
};
focusedDropdownInputContainer: {
borderBottomStartRadius: number;
borderBottomEndRadius: number;
};
dropdownToggler: {
height: number;
paddingLeft: number;
flexDirection: "row";
justifyContent: "space-between";
alignItems: "center";
};
dropdownText: {
flex: number;
fontFamily: string;
fontSize: number;
color: string;
};
activeDropdownText: {
color: string;
};
iconContainer: {
paddingHorizontal: number;
height: "100%";
alignItems: "center";
justifyContent: "center";
};
dropdownList: {
position: "absolute";
right: number;
left: number;
zIndex: number;
backgroundColor: string;
borderBottomLeftRadius: number;
borderBottomRightRadius: number;
borderTopWidth: number;
overflow: "hidden";
};
dropdownItem: {
backgroundColor: string;
paddingHorizontal: number;
height: number;
flexDirection: "row";
alignItems: "center";
justifyContent: "center";
};
activeDropdownItem: {
backgroundColor: string;
};
dropdownItemText: {
flex: number;
fontFamily: string;
fontSize: number;
color: string;
};
activeDropdownItemText: {
color: string;
};
};
export default styles;
//# sourceMappingURL=style.d.ts.map