标签: performance reactjs react-native touchableopacity touchablehighlight
我正在编写一个本机应用程序。 我想要一个新闻。看到更像我们通常看到的更多信息。我怎么能这样做?
Like here
答案 0 :(得分:1)
Text组件有一个onPress道具,您可以在其中传递箭头功能
Text
onPress
<Text onPress = {() => this.myFunction()}> See More </Text>
注意:添加一些样式道具,例如color: 'blue'和fontWeight: 600可以帮助您的文字看起来与您提供的照片非常相似。
color: 'blue'
fontWeight: 600