React Nativeは、<Text>フィールドの単一の単語に太字または斜体を追加します


113

テキストフィールドの単一の単語を太字または斜体にするにはどうすればよいですか?このようなもの:

<Text>This is a sentence <b>with</b> one word in bold</Text>

太字の新しいテキストフィールドを作成すると、別の行に区切られるため、確実にそうする方法ではありません。1つの単語を太字にするだけで、<p>タグ内に<p>タグを作成するようなものです。

回答:


209

<Text>他のテキストコンポーネントのコンテナのように使用できます。これは例です:

...
<Text>
  <Text>This is a sentence</Text>
  <Text style={{fontWeight: "bold"}}> with</Text>
  <Text> one word in bold</Text>
</Text>
...

以下に例を示します。


1
はい、しかし私が言ったように、各テキスト要素が異なる行に分離されているので、それはうまくいきません。
Hasen

1
<Text style={{fontWeight: 'bold'}}> with</Text>を3つの別々の行に分割すると、先行スペースのスペースが失われるため、{' with'}常にそれがあることを確認するために使用することができます。
Christoffer Karlsson 2017年

1
styled-componentsあなたが太字を渡すことができるならそれを指摘したいだけですproperty
クレイジーバーニー

2
@KonstantinYakushinリンクが壊れている、fyi
kevlarjacket

@kevlarjacketはい。残念ながら、rnplayサービスは閉鎖されています。サンプルを更新してみます。
Slowyn '19

59

よりWebのような感じにするには:

const B = (props) => <Text style={{fontWeight: 'bold'}}>{props.children}</Text>
<Text>I am in <B>bold</B> yo.</Text>

2
これは、文字列値を持つ変数に対しては機能しません
Ismail Iqbal

4
Webのように私は言うだろう-の<Strong>代わりに使用<B>:)
pie6k

IosとAndroidでクラッシュします。<Text>内で<Text>タグを使用できません
Hakan

追加const B = this.Bしてrender
いただけ

@Hakan-reactnative.dev/docs/ text-ネストされた<Text>タグが実際に仕様の一部であることを指摘したかっただけです。
ejb

8

https://www.npmjs.com/package/react-native-parsed-textを使用できます

import ParsedText from 'react-native-parsed-text';
 
class Example extends React.Component {
  static displayName = 'Example';
 
  handleUrlPress(url) {
    LinkingIOS.openURL(url);
  }
 
  handlePhonePress(phone) {
    AlertIOS.alert(`${phone} has been pressed!`);
  }
 
  handleNamePress(name) {
    AlertIOS.alert(`Hello ${name}`);
  }
 
  handleEmailPress(email) {
    AlertIOS.alert(`send email to ${email}`);
  }
 
  renderText(matchingString, matches) {
    // matches => ["[@michel:5455345]", "@michel", "5455345"]
    let pattern = /\[(@[^:]+):([^\]]+)\]/i;
    let match = matchingString.match(pattern);
    return `^^${match[1]}^^`;
  }
 
  render() {
    return (
      <View style={styles.container}>
        <ParsedText
          style={styles.text}
          parse={
            [
              {type: 'url',                       style: styles.url, onPress: this.handleUrlPress},
              {type: 'phone',                     style: styles.phone, onPress: this.handlePhonePress},
              {type: 'email',                     style: styles.email, onPress: this.handleEmailPress},
              {pattern: /Bob|David/,              style: styles.name, onPress: this.handleNamePress},
              {pattern: /\[(@[^:]+):([^\]]+)\]/i, style: styles.username, onPress: this.handleNamePress, renderText: this.renderText},
              {pattern: /42/,                     style: styles.magicNumber},
              {pattern: /#(\w+)/,                 style: styles.hashTag},
            ]
          }
          childrenProps={{allowFontScaling: false}}
        >
          Hello this is an example of the ParsedText, links like http://www.google.com or http://www.facebook.com are clickable and phone number 444-555-6666 can call too.
          But you can also do more with this package, for example Bob will change style and David too. foo@gmail.com
          And the magic number is 42!
          #react #react-native
        </ParsedText>
      </View>
    );
  }
}
 
const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
 
  url: {
    color: 'red',
    textDecorationLine: 'underline',
  },
 
  email: {
    textDecorationLine: 'underline',
  },
 
  text: {
    color: 'black',
    fontSize: 15,
  },
 
  phone: {
    color: 'blue',
    textDecorationLine: 'underline',
  },
 
  name: {
    color: 'red',
  },
 
  username: {
    color: 'green',
    fontWeight: 'bold'
  },
 
  magicNumber: {
    fontSize: 42,
    color: 'pink',
  },
 
  hashTag: {
    fontStyle: 'italic',
  },
 
});


1
ParsedTextを共有していただきありがとうございます。ブリリアント
Monero Jeanniton 2018

ようこそ。ハッピーコーディング
Ahmad Moussa、2018

5

この反応ネイティブライブラリを使用する

インストールするには

npm install react-native-htmlview --save

基本的な使い方

 import React from 'react';
 import HTMLView from 'react-native-htmlview';

  class App extends React.Component {
  render() {
   const htmlContent = 'This is a sentence <b>with</b> one word in bold';

  return (
   <HTMLView
     value={htmlContent}
   />    );
  }
}

ほとんどすべてのhtmlタグをサポートします。

のようなより高度な使用法について

  1. リンク処理
  2. カスタム要素のレンダリング

このReadMeを表示


3

質問どおりテキストフィールドにはありませんが、個別のテキスト要素をビューにラップすると、望ましい出力が得られます。これは、いくつかのテキストをスタイリングするためだけに別のライブラリをプロジェクトに追加したくない場合に使用できます。

<View style={{flexDirection: 'row'}}>
 <Text style={{fontWeight: '700', marginRight: 5}}>Contact Type:</Text>
 <Text>{data.type}</Text>
</View>

次のようになります

ここに画像の説明を入力してください


1

ここに画像の説明を入力してください

私はreact-native-spannable-stringのメンテナーです

<Text/>カスタムスタイルのネストされたコンポーネントはうまく機能しますが、保守性は低くなります。

このライブラリを使用して、このような拡張可能な文字列を作成することをお勧めします。

SpannableBuilder.getInstance({ fontSize: 24 })
    .append('Using ')
    .appendItalic('Italic')
    .append(' in Text')
    .build()

0

Textコンポーネントを必要なスタイルでネストするだけです。スタイルは、最初のテキストコンポーネントで定義済みのスタイルとともに適用されます。

例:

 <Text style={styles.paragraph}>
   Trouble singing in. <Text style={{fontWeight: "bold"}}> Resolve</Text>
 </Text>

0

現在、テキストコンポーネントのネストはできませんが、次のようにビューでテキストをラップできます。

<View style={{flexDirection: 'row', flexWrap: 'wrap'}}>
    <Text>
        {'Hello '}
    </Text>
    <Text style={{fontWeight: 'bold'}}>
        {'this is a bold text '}
    </Text>
    <Text>
        and this is not
    </Text>
</View>

角括弧内の文字列を使用して単語間のスペースを強制しましたが、marginRightまたはmarginLeftを使用してそれを実現することもできます。それが役に立てば幸い。




-1

太字:

<Text>
  <Text>This is a sentence</Text>
  <Text style={{fontWeight: "bold"}}> with</Text>
  <Text> one word in bold</Text>
</Text>

斜体テキスト:

<Text>
  <Text>This is a sentence</Text>
  <Text style={{fontStyle: "italic"}}> with</Text>
  <Text> one word in italic</Text>
</Text>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.