我需要将Text
组件中的选择文本链接到指向外部网址。我已经包含TouchableOpacity
并根据需要指定了宽度和高度,但TouchableOpacity
现在似乎与相邻文本重叠。例如:
<Text>Lorem ipsum dolor sit amet, <TouchableOpacity onPress={() => {Linking.openURL('http://www.example.com/')}} style={{width: 108, height: 11}}><Text>consectetur adipiscing</Text></TouchableOpacity> elit. Fusce congue malesuada euismod.</Text>
在TouchableOpacity
组件中保持Text
内联的最佳方法是什么?
答案 0 :(得分:9)
这样怎么样?
import { Text, Linking } from 'react-native';
<Text>Hey guys I wanted to share this awesome thing just press
<Text
style={{color: 'red'}}
onPress={() => {Linking.openURL('http://www.example.com/')}}
>
here
</Text>
to see it in your browser
</Text>