Following libraries are needed:
- react-native-sass-transformer - Transforms Sass to a React Native compatible style object and handles live reloading
- babel-plugin-react-native-platform-specific-extensions - Transforms ES6
import
statements to platform specificrequire
statements if the platform specific files exist on disk. - babel-plugin-react-native-classname-to-style - Transforms
className
property tostyle
property.
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 AwesomeProject
Start packager:
yarn start
Run project on iOS simulator:
react-native run-ios
yarn add babel-plugin-react-native-classname-to-style babel-plugin-react-native-platform-specific-extensions react-native-sass-transformer sass --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": ["scss", "sass"]
}
]
]
}
.babelrc
{
"presets": ["react-native"],
"plugins": [
"react-native-classname-to-style",
[
"react-native-platform-specific-extensions",
{
"extensions": ["scss", "sass"]
}
]
]
}
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: ["scss", "sass"] },
],
],
};
};
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-sass-transformer"),
},
resolver: {
sourceExts: [...sourceExts, "scss", "sass"],
},
};
})();
If you are using Expo, you also need to add this to app.json
:
{
"expo": {
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": ["js", "jsx", "scss", "sass"]
}
}
}
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-sass-transformer");
},
getSourceExts() {
return ["js", "jsx", "scss", "sass"];
},
};
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", "scss", "sass"],
"transformer": "node_modules/react-native-sass-transformer/index.js"
}
}
}
styles.scss
:
.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.scss";
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