react-native-css-transform

transform css files into react-native StyleSheet Object

Usage no npm install needed!

<script type="module">
  import reactNativeCssTransform from 'https://cdn.skypack.dev/react-native-css-transform';
</script>

README

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;