react-native-htmltext文本解析控件
react-native-htmltext 可以用 HTML 像 Markup 一样,在 ReactNative 里创建程式化的文本。ReactNative 为程式化文本提供一个文本元素,用于取代 NSAttributedString,你可以创建嵌套的文本:
<Text style={{fontWeight: 'bold'}}> I am bold <Text style={{color: 'red'}}> and red </Text> </Text
示例:
输入:
render: function() { var html = `<p>Hello world <b>world</b> <i>foo</i> bar hahh</p>` return ( <View style={styles.container}> <HtmlText style={styles.welcome} html={html}></HtmlText> </View> ); }
输入:
render: function() { var html = `<blockquote><p>Hello world <b>world</b> <i>foo</i> <blockquote>bar hahh</blockquote></p></blockquote>` return ( <View style={styles.container}> <HtmlText style={styles.welcome} html={html}></HtmlText> </View> ); }
评论