自定义可触摸的文本,如查看更多

时间:2017-12-09 02:30:56

标签: performance reactjs react-native touchableopacity touchablehighlight

我正在编写一个本机应用程序。 我想要一个新闻。看到更像我们通常看到的更多信息。我怎么能这样做?

Like here

1 个答案:

答案 0 :(得分:1)

Text组件有一个onPress道具,您可以在其中传递箭头功能

<Text onPress = {() => this.myFunction()}>
    See More
</Text>

注意:添加一些样式道具,例如color: 'blue'fontWeight: 600可以帮助您的文字看起来与您提供的照片非常相似。