Skip to content

Instantly share code, notes, and snippets.

@coolnalu
Created January 16, 2018 00:34
Show Gist options
  • Save coolnalu/0fc1806168ffa7daf4ed09cf5ff2611a to your computer and use it in GitHub Desktop.
Save coolnalu/0fc1806168ffa7daf4ed09cf5ff2611a to your computer and use it in GitHub Desktop.
React Native Change Font
import React, {Component} from 'react';
import {StyleSheet, Text} from 'react-native';
type Props = {
slogan: string
};
export default class Title extends Component<Props> {
render() {
return (<Text style={styles.welcome}>
{this.props.slogan}
</Text>);
}
}
const styles = StyleSheet.create({
welcome: {
fontFamily: 'ProximaNova-Bold',
fontSize: 24,
color: '#161616'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment