react-native

Topics related to react-native:

Getting started with react-native

Layout

Props

Command Line Instructions

HTTP Requests

Navigator Best Practices

ListView

Platform Module

State

Hello World

Images

Custom Fonts

Animation API

Android - Hardware Back Button

Debugging

Run an app on device (Android Version)

Troubleshootings :
Could not connect to development server => Do this : adb reverse tcp:8081 tcp:8081, make sure that your phone is connected (adb devices). Verify also that there is a local server launched, if not run react-native start

Components

Native Modules

Integration with Firebase for Authentication

Navigator with buttons injected from pages

RefreshControl with ListView

Styling

Most React Native styles are their CSS forms, but in camel case. So, text-decoration becomes textDecoration.

Unlike in CSS, styles do not get inherited. If you want child components to inherit a certain style, you must explicitly provide it to the child. This means that you cannot set a font family for an entire View.
The one exception to this is the Text component: nested Texts inherit their parent styles.

Modal

Routing

Unit Testing

WebView

Create a shareable APK for android

PushNotification

Refer GitHub Repo of this module for more details.

Linking Native API

Render Best Practises

ESLint in react-native

Multiple props rendering