React Native在<Text>字段中为单个单词添加粗体或斜体


113

如何在“文本”字段中使一个单词变为粗体或斜体?有点像这样:

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

如果我为粗体字符创建一个新的文本字段,它将把它分隔到另一行上,因此肯定不是这样做的方法。这就像在<p>标记内创建<p>标记只是为了使一个单词加粗。

Answers:


210

您可以<Text>像容器一样使用其他文本组件。这是示例:

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

这是一个例子


1
是的,但是就像我说的那样,这是行不通的,因为每个文本元素都分隔在不同的行上。
哈森

1
如果将您<Text style={{fontWeight: 'bold'}}> with</Text>分成三行,则会丢失前导空格,因此您可能需要使用{' with'}以确保始终拥有它。
Christoffer Karlsson

1
只是想指出,如果styled-components您可以通过大胆的话property
Crazy Barney

2
@KonstantinYakushin链接已断开,仅供参考
kevlarjacket

@kevlarjacket是的。不幸的是,rnplay服务已关闭。我将尝试更新示例。
Slowyn

60

对于更像网络的感觉:

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

2
这不适用于具有字符串值的变量
Ismail Iqbal

4
作为一个类似网络的网站,我会说-使用<Strong>代替<B>:)
pie6k

在Ios和Android上会崩溃,您不能在<Text>中使用<Text>标签
Hakan

您可以添加const B = this.Brender
伊詹

@ 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

欢迎大家。快乐的编码
艾哈迈德·穆萨

5

使用此React本机库

安装

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. 自定义元素渲染

查看此自述文件


3

它不是在要求的文本字段中,而是将单独的文本元素包装到视图中将提供所需的输出。如果您不想仅将样式设置为几个文本,就可以在项目中添加另一个库。

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

结果如下

在此处输入图片说明


1

在此处输入图片说明

我是react-native-spannable字符串的维护者

<Text/>具有自定义样式的嵌套组件效果很好,但可维护性很低。

我建议您使用此库构建像这样的可扩展字符串。

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

0

您可以只使用所需样式嵌套Text组件。该样式将与第一个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来实现。希望能帮助到你。


0

例如!

const TextBold = (props) => <Text style={{fontWeight: 'bold'}}>Text bold</Text>

<Text> 123<TextBold/> </Text>


0
<Text>
    <Text style={{fontWeight: "bold"}}>bold</Text>
    normal text
    <Text style={{fontStyle: "italic"}}> italic</Text>
</Text>

添加一些解释你的代码将是首选
keikai

-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>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.