Skip to content

Instantly share code, notes, and snippets.

@blaues0cke
Forked from knowbody/RNfontWeights.js
Last active October 19, 2017 11:11
Show Gist options
  • Save blaues0cke/fed81aec928ddda97dad85efc995d140 to your computer and use it in GitHub Desktop.
Save blaues0cke/fed81aec928ddda97dad85efc995d140 to your computer and use it in GitHub Desktop.
React Native Font Weight Cheatsheet iOS
const fontWeight = {
thin: '100',
ultraLight: '200',
light: '300',
regular: '400',
medium: '500',
semiBold: '600',
bold: '700',
heavy: '800',
black: '900'
};
export default fontWeight;
import FontWeight from 'FontWeight';
const styles = {
tabBar: {
fontWeight: FontWeight.heavy
}
};
module.exports = styles;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment