react-native-section-alphabet-list
Version:
A simple React Native component that takes an array of data and renders a SectionList with alphabetically sorted data.
27 lines (26 loc) • 595 B
TypeScript
export declare const styles: {
container: {
position: "relative";
};
listItemContainer: {
flex: number;
height: number;
paddingHorizontal: number;
justifyContent: "center";
borderTopColor: string;
borderTopWidth: number;
};
listItemLabel: {
color: string;
fontSize: number;
};
sectionHeaderContainer: {
height: number;
backgroundColor: string;
justifyContent: "center";
paddingHorizontal: number;
};
sectionHeaderLabel: {
color: string;
};
};