npm.io
1.0.5 • Published 10 years agoCLI

react-native-css-transform

Licence
MIT
Version
1.0.5
Deps
2
Vulns
0
Weekly
0
Stars
1

react-native-css-transform

npm npm

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;