Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | export default { ios: {}, android: { regular: { fontFamily: 'sans-serif', }, light: { fontFamily: 'sans-serif-light', }, condensed: { fontFamily: 'sans-serif-condensed', }, condensed_light: { fontFamily: 'sans-serif-condensed', fontWeight: 'light', }, black: { // note(brentvatne): sans-serif-black is only supported on Android 5+, // we can detect that here and use it in that case at some point. fontFamily: 'sans-serif', fontWeight: 'bold', }, thin: { fontFamily: 'sans-serif-thin', }, medium: { fontFamily: 'sans-serif-medium', }, bold: { fontFamily: 'sans-serif', fontWeight: 'bold', }, }, }; |