개발/React Native1 [React Native] 0.70버전 custom font 적용하기 (react-native-cli) 이번 글에서는 react native 현재 최신 버전인 0.70.1 버전에서 custom font 적용하는 방법을 포스팅하려고 합니다.우선 프로젝트를 생성하고 App.js 파일을 수정합니다.npx react-native init AwesomeProjectimport React from 'react';import {StyleSheet, Text, View} from 'react-native';const App = () => { return ( hello world! );};const styles = StyleSheet.create({ view: { display: 'flex', alignItems: 'center', justifyContent: 'center',.. 2022. 9. 28. 이전 1 다음