react-native-css-transform

1.0.5 • Public • Published

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;
 

Readme

Keywords

Package Sidebar

Install

npm i react-native-css-transform

Weekly Downloads

2

Version

1.0.5

License

MIT

Last publish

Collaborators

  • yywl
  • yyzl