自定义可触摸文本,例如查看更多
Custom a touchable text like See more
我正在编写一个 React Native 应用程序。
我想做一个新闻。 See more like we usually see 了解更多信息。我该怎么做?
Like here
Text
组件有一个 onPress
属性,你可以在其中传递一个 箭头函数
<Text onPress = {() => this.myFunction()}>
See More
</Text>
注意:添加一些样式道具,例如 color: 'blue'
和 fontWeight: 600
可以帮助您的文字看起来与您提供的照片非常相似。
我正在编写一个 React Native 应用程序。 我想做一个新闻。 See more like we usually see 了解更多信息。我该怎么做?
Like here
Text
组件有一个 onPress
属性,你可以在其中传递一个 箭头函数
<Text onPress = {() => this.myFunction()}>
See More
</Text>
注意:添加一些样式道具,例如 color: 'blue'
和 fontWeight: 600
可以帮助您的文字看起来与您提供的照片非常相似。