react-native-tableview-simple
Version:
React Native component for TableView made with pure CSS
19 lines (18 loc) • 723 B
TypeScript
import React from 'react';
import { TextStyle, ViewStyle } from 'react-native';
export interface THEME_APPEARANCE {
colors: {
background: ViewStyle['backgroundColor'] | TextStyle['color'];
muted: ViewStyle['backgroundColor'] | TextStyle['color'];
separatorColor: ViewStyle['backgroundColor'] | TextStyle['color'];
body: ViewStyle['backgroundColor'] | TextStyle['color'];
primary: ViewStyle['backgroundColor'] | TextStyle['color'];
secondary: ViewStyle['backgroundColor'] | TextStyle['color'];
};
}
export declare const THEMES: {
appearances: {
[key: string]: THEME_APPEARANCE;
};
};
export declare const ThemeContext: React.Context<THEME_APPEARANCE>;