import Ionicons from '@expo/vector-icons/build/Ionicons'; import React from 'react'; import { Platform, ScrollView, Text, View } from 'react-native'; export default class FontScreen extends React.Component { static navigationOptions = { title: 'Font', }; render() { return ( Font icons sets and other custom fonts can be loaded from the web Font icons sets and other custom fonts can be loaded by providing remote uri as well. {Platform.OS === 'ios' && ( Custom font with `adjustsFontSizeToFit` on iOS )} {Platform.OS === 'ios' && ( Custom remote uri font with `adjustsFontSizeToFit` on iOS )} ); } }