chakra-uiのfontsizeをReact Nativeで再現しました

この記事は公開から2年以上経過しています。内容が古くなっている可能性があります。

皆様お馴染みのchakra-ui fontsize="md"の記法をReact Nativeで再現したかったのでしました。

"本家" "React Nativeで再現した方"

誤差はちょっとあると思います。

fontsize="md"記法を対応させるためにはライブラリのインストールが必要です。

yarn add @shopify/restyle react-native-responsive-fontsize
  • @shopify/restyle: fontsizeなど記述する為にいる
  • react-native-responsive-fontsize: フォントサイズを再現するために画面幅からパーセンテージで調節可能にするため

@shopify/restyleの導入は以下のリンクから。。 https://shopify.github.io/restyle/fundamentals/defining-your-theme/ https://shopify.github.io/restyle/fundamentals/components/predefined-components#text

テーマファイルにこれを追記します。

〜〜〜〜〜〜〜
"6xl": {
     fontSize: RFPercentage(7.5),
 },
 "5xl": {
     fontSize: RFPercentage(6),
 },
 "4xl": {
     fontSize: RFPercentage(4.5),
 },
 "3xl": {
     fontSize: RFPercentage(3.8),
 },
 "2xl": {
     fontSize: RFPercentage(3),
 },
 xl: {
     fontSize: RFPercentage(2.5),
 },
 lg: {
     fontSize: RFPercentage(2.2),
 },
 md: {
     fontSize: RFPercentage(2),
 },
 sm: {
     fontSize: RFPercentage(1.8),
 },
 xs: {
     fontSize: RFPercentage(1.5),
 }
〜〜〜〜〜〜〜〜

🎉

<Text variant="xs" my="sm">
    (xs) In love with React & Next
</Text>

新着記事

関連ネットワーク(beta)

ドラッグで移動 / Ctrl+ホイールでズーム