Skip to content

Instantly share code, notes, and snippets.

@knowbody
knowbody / ex-navigation.md
Last active July 17, 2023 10:14
My exponent's ex-navigation docs/thoughts

Exponent - ex-navigation

This is for now, for my personal use only, things might not be correctly explained here. For the official docs please check: https://github.com/exponentjs/ex-navigation/blob/master/README.md

Navigation bar configuration

On every screen you can use the built-in navigation bar, you can add a title, left button, right button or change navigation bar’s style. All you need to do is pass appropriate params to navigationBar in the route configuration:

import React, { Component } from 'react';
@chourobin
chourobin / 0-bridging-react-native-cheatsheet.md
Last active April 22, 2025 14:27
React Native Bridging Cheatsheet
@threepointone
threepointone / example.js
Last active August 31, 2017 02:33
glamor for react-native?
import { View, Text } from 'react-native'
import { css } from 'glamor-native'
export App = () => {
<View style={css({ color: 'red' })}>
<Text>Hello world!</Text>
</View>
}