React ネイティブ テキスト スタイル

Shiv Yadav 2024年2月15日
React ネイティブ テキスト スタイル

React Native では、テキストを太字、斜体、または下線付きにしたい場合があります。 この記事では、React Native の太字、斜体、または下線付きのテキストでテキストを作成する方法について説明します。

React ネイティブ テキスト スタイル

React Native でスタイルを使用して、テキストを太字、斜体、または下線付きにする場合があります。

構文:

const styles = StyleSheet.create({
  bold: {fontWeight: 'bold', fontSize: 30},
  italic: {fontStyle: 'italic', fontSize: 32},
  underline: {textDecorationLine: 'underline', fontSize: 34},
});

ご覧のとおり、bolditalic、および underline を含むスタイルシートを作成します。 スタイル fontWeightbold に設定され、テキストを太字にします。

同様に、斜体の場合、斜体は、テキストが右に傾いていることを示すテキストのスタイルです。 スタイル fontStyleitalic として設定され、テキストを斜体にします。

同様に、テキストに下線を引くには、textdecorationLineunderline. として使用してテキストのスタイルを設定します。

コード例:

import React from 'react';
import {StyleSheet, Text, View} from 'react-native';

const App = () => {
  return (
      <View><Text style = {styles.bold}>You are
          bold</Text>
      <Text style={styles.italic}>You are italic</Text>
      <Text style = {styles.underline}>You are underline</Text>
    </View>);
};

const styles = StyleSheet.create({
  bold: {fontWeight: 'bold', fontSize: 30},
  italic: {fontStyle: 'italic', fontSize: 32},
  underline: {textDecorationLine: 'underline', fontSize: 34},
});

export default App;

まず、この例の要件を React Native からインポートします。 次に、プライマリ関数は、テキスト コンポーネントを含むビュー コンポーネントを作成します。

テキストを装飾的にするために、前のコードで言及したいくつかのスタイルを使用しました。 fontWeightfontStyle、およびテキスト装飾線をそれぞれ太字、斜体、および下線として含むスタイルシートを作成しました。

太字、斜体、および下線付きのテキストは、上から下に並べ替える必要があります。

出力:

React Native でテキストを太字、斜体、または下線付きにする

React Native でスタイルを使用して、テキストを太字、斜体、または下線付きにする場合があります。

著者: Shiv Yadav
Shiv Yadav avatar Shiv Yadav avatar

Shiv is a self-driven and passionate Machine learning Learner who is innovative in application design, development, testing, and deployment and provides program requirements into sustainable advanced technical solutions through JavaScript, Python, and other programs for continuous improvement of AI technologies.

LinkedIn

関連記事 - React Native