https://github.com/kristerkari/react-native-css-modules-example
A simple example app that shows how you can use CSS modules with React Native and React (for browser)
https://github.com/kristerkari/react-native-css-modules-example
css css-modules demo-app example react-native sass
Last synced: 10 months ago
JSON representation
A simple example app that shows how you can use CSS modules with React Native and React (for browser)
- Host: GitHub
- URL: https://github.com/kristerkari/react-native-css-modules-example
- Owner: kristerkari
- Created: 2018-01-16T15:12:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-18T03:19:30.000Z (about 1 year ago)
- Last Synced: 2025-03-19T09:13:43.038Z (10 months ago)
- Topics: css, css-modules, demo-app, example, react-native, sass
- Language: JavaScript
- Homepage:
- Size: 4.81 MB
- Stars: 14
- Watchers: 3
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Native + CSS modules

[](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
A simple example app that shows how you can use CSS modules with React Native and React (for browser).
Have a look at the [src](/src) folder to see code examples.
**Quick links:** **[Features](#example-app-features)** • **[Screenshots](#screenshots)** • **[Try it](#try-it)** • **[Documentation](https://github.com/kristerkari/react-native-css-modules#documentation)**
## Example App features
#### React Native and Web
- :tada: Allows `className` and `style` properties to be used on React Native elements such as `` or ``.
- :fire: CSS Hot loading (live reloading).
- :ok_hand: Uses [Sass](src/Buttons.scss) and [CSS](src/ProfileCard.css) for styles
- :mag: [Custom stylelint config for React Native CSS modules](https://github.com/kristerkari/stylelint-config-react-native-css-modules)
#### React Native specific
- :package: Uses [React Native CSS modules](https://github.com/kristerkari/react-native-css-modules)
- :globe_with_meridians: [Platform specific file extensions](https://facebook.github.io/react-native/docs/platform-specific-code.html#platform-specific-extensions), e.g. `styles.ios.css`, `styles.android.css`, `styles.native.css`.
#### Web specific
- :package: Uses [Webpack](https://webpack.js.org/) + [CSS modules](https://github.com/css-modules/css-modules).
- :wrench: Uses [React Native for Web](https://github.com/necolas/react-native-web) to make most React Native elements work in the browser.
## Supported Browsers
- Mobile: Android Stock browser (4.4-5.x), Android Chrome, iOS Safari 8+
- Desktop: Firefox, Chrome, Safari
## Try it
### Step 1: Install depencies to run React Native
Make sure that you have `react-native-cli` installed (`npm install -g react-native-cli`) and [XCode](https://developer.apple.com/xcode/) (for iOS development) / [Android Studio](https://developer.android.com/studio/index.html) (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
### Step 2: Clone the repo and move to project
```sh
git clone git@github.com:kristerkari/react-native-css-modules-example.git
cd react-native-css-modules-example
```
### Step 3: Install example app's dependencies
NodeJS packages:
```sh
yarn install
```
and CocoaPods for iOS:
```sh
cd ios && pod install
```
### Step 4: Run React Native packager
You can open a new terminal tab to run React Native's packager.
```sh
yarn start
```
### Step 5: Run app on Android, iOS or Web
First make sure that your Android emulator or iOS simulator is working, then:
```sh
yarn ios
```
or
```sh
yarn android
```
or
```sh
yarn web
```
Web app can be accessed by opening `http://localhost:8080` in a browser.
## Screenshots
**iOS - Android - Web**


