Google fonts in React Native
问题 I was wondering if it'd be possible to use Google fonts in my React Native project. I've been looking for some information but I didn't find anything. Is it possible? Thanks. P.D.: I know I can download it and include it into my project. 回答1: Download google fonts from here : Github Google Fonts Suppose your font is Quicksand, you can do something like this in index.ios.js : import _ from 'lodash'; var OldText = Text; class NewText extends OldText { defaultProps = { customFont: false } render