ReactNative-テキスト

この章では、 Text ReactNativeのコンポーネント。

このコンポーネントはネストでき、親から子にプロパティを継承できます。これは多くの点で役立ちます。最初の文字の大文字化、単語やテキストの一部のスタイリングなどの例を示します。

ステップ1:ファイルを作成する

作成するファイルは text_example.js

ステップ2:App.js

このステップでは、単純なコンテナを作成します。

App.js

import React, { Component } from 'react'
import TextExample from './text_example.js'

const App = () => {
   return (
      <TextExample/>
   )
}
export default App

ステップ3:テキスト

このステップでは、遺伝形式を使用します。 styles.text すべてに適用されます Text コンポーネント。

また、テキストの一部に他のスタイルプロパティを設定する方法にも気付くでしょう。すべての子要素には親スタイルが渡されていることを知っておくことが重要です。

text_example.js

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

const TextExample = () => {
   return (
      <View style = {styles.container}>
         <Text style = {styles.text}>
            <Text style = {styles.capitalLetter}>
               L
            </Text>
            
            <Text>
               orem ipsum dolor sit amet, sed do eiusmod.
            </Text>
            
            <Text>
               Ut enim ad <Text style = {styles.wordBold}>minim </Text> veniam,
               quis aliquip ex ea commodo consequat.
            </Text>
            
            <Text style = {styles.italicText}>
               Duis aute irure dolor in reprehenderit in voluptate velit esse cillum.
            </Text>
            
            <Text style = {styles.textShadow}>
               Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
               deserunt mollit anim id est laborum.
            </Text>
         </Text>
      
      </View>
   )
}
export default TextExample

const styles = StyleSheet.create ({
   container: {
      alignItems: 'center',
      marginTop: 100,
      padding: 20
   },
   text: {
      color: '#41cdf4',
   },
   capitalLetter: {
      color: 'red',
      fontSize: 20
   },
   wordBold: {
      fontWeight: 'bold',
      color: 'black'
   },
   italicText: {
      color: '#37859b',
      fontStyle: 'italic'
   },
   textShadow: {
      textShadowColor: 'red',
      textShadowOffset: { width: 2, height: 2 },
      textShadowRadius : 5
   }
})

次の出力が表示されます-