我正在使用RenderHtml
组件 from'react-native-render-html'
在 react native 中呈现一些 html。问题是我正在渲染的文本太长,如果溢出,我希望它具有“....”。我该怎么做呢?
const tagsStyles = {
p: {
color: '#fff',
margin: 0,
fontSize: 15,
},
};
<View style={{padding:10,flex:2,height:200,overflow:'hidden'}}>
<RenderHtml
contentWidth={width}
source = {{html: movie.show.summary}}
tagsStyles = {tagsStyles}
/>
</View>