coldrain-f / whale-voca

日本語 상용한자 2,136자와 관련 단어들을 효율적으로 암기할 수 있는 단어 암기 모바일 앱 서비스입니다.
0 stars 0 forks source link

[React Native] 디바이스 글꼴 크기가 앱의 영향이 없도록 작업 #11

Closed coldrain-f closed 12 months ago

coldrain-f commented 1 year ago

Description

모든 컴포넌트에 allowFontScaling={false} 설정하거나, NativeBase에서 전역적으로 allowFontScaling={false}가 적용되는 방법 알아보기

Works

coldrain-f commented 12 months ago
export default function App(): React.JSX.Element {
  const theme = extendTheme({
    components: {
      Text: {
        defaultProps: {
          allowFontScaling: false,
        },
      },
    },
  });
  return (
    <NativeBaseProvider theme={theme}>
      <Navigation />
    </NativeBaseProvider>
  );
}

nativeBase 공식 문서를 확인해 보니,

컴포넌트에 전역적으로 allowFontScaling: false를 적용하는 방법을 제공해 줬다.