Following libraries are needed:
- react-native-css-transformer - Transforms CSS to a React Native compatible style object and handles live reloading
- babel-plugin-react-native-platform-specific-extensions - Transforms ES6
importstatements to platform specificrequirestatements if the platform specific files exist on disk. - babel-plugin-react-native-classname-to-style - Transforms
classNameproperty tostyleproperty.
Make sure that you have react-native-cli installed (npm install -g react-native-cli) and XCode (for iOS development) / Android Studio (for Android development) installed and working.
- Go to "Building Projects with Native Code" tab and follow the guide: https://facebook.github.io/react-native/docs/getting-started.html
e.g.
react-native init AwesomeProject
cd AwesomeProjectStart packager:
yarn startRun project on iOS simulator:
react-native run-iosyarn add babel-plugin-react-native-classname-to-style babel-plugin-react-native-platform-specific-extensions react-native-css-transformer --dev.babelrc (or babel.config.js)
{
"presets": ["module:metro-react-native-babel-preset"],
"plugins": [
"react-native-classname-to-style",
[
"react-native-platform-specific-extensions",
{
"extensions": ["css"]
}
]
]
}.babelrc
{
"presets": ["react-native"],
"plugins": [
"react-native-classname-to-style",
[
"react-native-platform-specific-extensions",
{
"extensions": ["css"]
}
]
]
}babel.config.js (older Expo versions use .babelrc)
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
"react-native-classname-to-style",
["react-native-platform-specific-extensions", { extensions: ["css"] }],
],
};
};Add this to metro.config.js in your project's root (create the file if you don't have one already):
const { getDefaultConfig } = require("metro-config");
module.exports = (async () => {
const {
resolver: { sourceExts },
} = await getDefaultConfig();
return {
transformer: {
babelTransformerPath: require.resolve("react-native-css-transformer"),
},
resolver: {
sourceExts: [...sourceExts, "css"],
},
};
})();If you are using Expo, you also need to add this to app.json:
{
"expo": {
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": ["js", "jsx", "css"]
}
}
}If you are using React Native without Expo, add this to rn-cli.config.js in your project's root (create the file if you don't have one already):
module.exports = {
getTransformModulePath() {
return require.resolve("react-native-css-transformer");
},
getSourceExts() {
return ["js", "jsx", "css"];
},
};If you are using Expo, instead of adding the rn-cli.config.js file, you need to add this to app.json:
{
"expo": {
"packagerOpts": {
"sourceExts": ["js", "jsx", "css"],
"transformer": "node_modules/react-native-css-transformer/index.js"
}
}
}styles.css:
.container {
flex: 1;
justify-content: center;
align-items: center;
background-color: #f5fcff;
}
.blue {
color: blue;
font-size: 30px;
}Add style import and BlueText component to App.js:
import React, { Component } from "react";
import { Text, View } from "react-native";
import styles from "./styles.css";
const BlueText = () => {
return <Text className={styles.blue}>Blue Text</Text>;
};
export default class App extends Component<{}> {
render() {
return (
<View style={styles.container}>
<BlueText />
</View>
);
}
}Restart React Native packager and clear it's cache (important) to see the styles that you added.
yarn start --reset-cache