1.0.3 • Published 6 years ago

react-native-styled-sheet v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

StyledSheet

React Native's StyleSheet API that lets you use props just like styled-components does.

contributions welcome npm version

import StyledSheet from 'react-native-styled-sheet';


const View = StyledSheet.View({
  backgroundColor: props => props.backgroundColor
});


<View backgroundColor="blue">
  <Text>Hey</Text>
</View>

Available React Native components