1.0.3 • Published 6 years ago
react-native-styled-sheet v1.0.3
StyledSheet
React Native's StyleSheet API that lets you use props just like styled-components does.
import StyledSheet from 'react-native-styled-sheet';
const View = StyledSheet.View({
backgroundColor: props => props.backgroundColor
});
<View backgroundColor="blue">
<Text>Hey</Text>
</View>