react-native-global-styler
Version:
Lightweight and developer-friendly React Native styling toolkit with prebuilt styled components and a powerful useGlobalStyler hook for shorthand props like m_10, radius_12, resize_cover, and more.
36 lines (24 loc) • 1.56 kB
text/typescript
// Components
export { default as GSImage } from './components/Image';
export { default as Image } from './components/Image';
export { default as GSImageBackground } from './components/ImageBackground';
export { default as ImageBackground } from './components/ImageBackground';
export { default as GSPressable } from './components/Pressable';
export { default as Pressable } from './components/Pressable';
export { default as GSScrollView } from './components/ScrollView';
export { default as ScrollView } from './components/ScrollView';
export { default as GSText } from './components/Text';
export { default as Text } from './components/Text';
export { default as GSTextInput } from './components/TextInput';
export { default as TextInput } from './components/TextInput';
export { default as GSTouchableHighlight } from './components/TouchableHighlight';
export { default as TouchableHighlight } from './components/TouchableHighlight';
export { default as GSTouchableOpacity } from './components/TouchableOpacity';
export { default as TouchableOpacity } from './components/TouchableOpacity';
export { default as GSView } from './components/View';
export { default as View } from './components/View';
// Styles
export {default as useGlobalStyler} from './styles/useGlobalStyler';
export {default as BaseGlobalStyles} from './styles/types/BaseGlobalStyles';
export {default as ImageGlobalStyles} from './styles/types/ImageGlobalStyles';
export {default as TextGlobalStyles} from './styles/types/TextGlobalStyles';