Created
July 5, 2019 09:26
-
-
Save FreddyPoly/5c7e678b11acc1fa7c5af4aaaafed488 to your computer and use it in GitHub Desktop.
[REACT NATIVE] Font Family Montserrat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
const TEXT: TextStyle = { | |
color: "#373737", | |
fontFamily: "Montserrat-Bold", | |
} | |
... | |
render() { | |
return ( | |
... | |
<Text style={TEXT}> | |
Premier input | |
</Text> | |
... | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment