react-native-css-transform
v1.0.5
Published
transform css files into react-native StyleSheet Object
Downloads
9
Readme
react-native-css-transform
transform css files into js files in react-native-style
$ npm install react-native-css-transform
$ rncss ./styles
TODO
watch files
DEMO
img {
flex: 2;
justify-content: 'center';
margin: 20 14 20 14;
background-size: cover;
}
/**
* create by react-native-css-transform
* see: https://github.com/AngusFu/react-native-css-transform
*/
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
"img": {
"flex": 2,
"justifyContent": "center",
"marginTop": 20,
"marginRight": 14,
"marginBottom": 20,
"marginLeft": 14,
"resizeMode": "cover"
}
});
export default styles;