UNPKG

react-native-tableview-simple

Version:

React Native component for TableView made with pure CSS

27 lines (26 loc) 973 B
import React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; export interface SectionInterface { allowFontScaling?: boolean; children?: React.ReactNode; footerComponent?: React.ReactNode; headerComponent?: React.ReactNode; footer?: string; footerTextColor?: TextStyle['color']; footerTextStyle?: TextStyle; header?: string; headerTextColor?: TextStyle['color']; headerTextStyle?: TextStyle; hideSeparator?: boolean; hideSurroundingSeparators?: boolean; roundedCorners?: boolean; sectionPaddingBottom?: ViewStyle['paddingBottom']; sectionPaddingTop?: ViewStyle['paddingTop']; sectionTintColor?: ViewStyle['backgroundColor']; separatorInsetLeft?: ViewStyle['marginLeft']; separatorInsetRight?: ViewStyle['marginRight']; separatorTintColor?: ViewStyle['backgroundColor']; withSafeAreaView?: boolean; } declare const Section: React.FC<SectionInterface>; export default Section;