diff --git a/docs/ReactNative.md b/docs/ReactNative.md
new file mode 100644
index 0000000..a5b5132
--- /dev/null
+++ b/docs/ReactNative.md
@@ -0,0 +1,279 @@
+# React Native ([Docs](https://facebook.github.io/react-native/docs/getting-started.html))
+
+… some introduction …
+
+## Styling in React Native
+
+With React Native, you don't use a special language or syntax for defining styles. You just style your application using JavaScript. All of the core components accept a prop named `style`. The style names and values usually match how CSS works on the web, except names are written using camel casing, e.g. `backgroundColor` rather than `background-color`.
+
+// < WIP >
+
+Differences / Specials:
+
+- No style inheritance like in CSS
+- Only a subset of CSS is valid (e.g. no `:last-child`)
+- Layout: Flexbox to rule them all
+
+// < /WIP >
+
+## How to set styles?
+
+Styles aren’t set component based like in the web with ZASAF. Instead they’re defined in a more reusable DRY approach because you’ll often use the same styles over and over again.
+
+### BAD
+
+The naming of the styles could get really bad, which means they’re harder to read and not so easily picked up.
+
+#### Component 1
+
+```jsx
+// Login.js
+
+import styles from './Login.styles';
+
+
+
+
+
+```
+
+```jsx
+// Login.styles.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ login: {
+ …
+ },
+});
+```
+
+#### Component 2
+
+```jsx
+// LoginHeader.js
+
+import styles from './LoginHeader.styles';
+
+
+ …
+
+```
+
+```jsx
+// LoginHeader.styles.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ loginHeader: {
+ …
+ },
+});
+```
+
+#### Component 3
+
+```jsx
+// LoginForm.js
+
+import styles from './LoginForm.styles';
+
+
+
+
+
+
+
+```
+
+```jsx
+// LoginForm.styles.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ loginForm: {
+ …
+ },
+ loginFormItem: {
+ …
+ },
+ loginFormFloatingLabel: {
+ …
+ },
+ loginFormInput: {
+ …
+ },
+});
+```
+
+### GOOD
+
+You can easily read from the `style` prop how your styling might look like. And on top of that, the styles are reusable so your codebase keeps DRY.
+
+#### Components
+
+```jsx
+// Login.js
+
+import { containerStyles } from '@/styles/generic';
+
+
+
+
+
+```
+
+```jsx
+// LoginHeader.js
+
+import { headerStyles } from '@/styles/generic';
+
+
+ …
+
+```
+
+```jsx
+// LoginForm.js
+
+import {
+ containerStyles,
+ formStyles,
+} from '@/styles/generic';
+
+
+
+
+
+
+ …
+
+```
+
+#### Styling
+
+```jsx
+// styles > generic > container.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ centered: {
+ …
+ },
+ stretched: {
+ …
+ },
+});
+```
+
+```jsx
+// styles > generic > form.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ item: {
+ …
+ },
+ floatingLabel: {
+ …
+ },
+ input: {
+ …
+ },
+});
+```
+
+```jsx
+// styles > generic > header.js
+
+import { StyleSheet } from 'react-native';
+
+export default StyleSheet.create({
+ container: {
+ …
+ },
+});
+```
+
+## Best Practices
+
+### StatusBar
+
+If you want to change the color of the Android and iOS StatusBar, you can’t easily add some styling and you’re done. Instead you have to build your own `StatusBar` component by using a customized version from React Native.
+
+**Important**: If you use the `Container` component from [NativeBase](http://docs.nativebase.io/Components.html#anatomy-headref), your newly built `DefaultStatusBar` needs to be placed outside of it.
+
+```jsx
+// App.js
+
+const App = () => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+);
+```
+
+Because iOS doesn’t have a concept of a StatusBar background, you need a wrapper `View` to achieve this in a cross-platform way.
+
+```jsx
+// DefaultStatusBar.js
+
+import React from 'react';
+import {
+ Platform,
+ StatusBar,
+ View,
+} from 'react-native';
+
+import * as colors from '@/styles/colors';
+
+const STATUSBAR_HEIGHT = Platform.OS === 'ios' ? 20 : StatusBar.currentHeight;
+
+const DefaultStatusBar = () => (
+
+
+
+);
+
+export default DefaultStatusBar;
+```
+
+**Important**: If you use the `Header` component from [NativeBase](http://docs.nativebase.io/Components.html#header-def-headref), you need to set two additional props, otherwise the text- and background-color aren’t rendered correctly.
+
+```jsx
+// CustomerDetailsHeader.js
+
+const CustomerDetailsHeader = () => (
+
+ …
+
+);
+```