import React from 'react'; import { View, Text, TouchableOpacity, Linking, StyleSheet, Image } from 'react-native'; import PropTypes from 'prop-types'; import QuoteMark from './QuoteMark'; const styles = StyleSheet.create({ button: { flex: 1, flexDirection: 'row', alignItems: 'center', marginVertical: 2 }, quoteSign: { borderWidth: 2, borderRadius: 4, borderColor: '#a0a0a0', height: '100%', marginRight: 5 }, image: { height: 80, width: 80, resizeMode: 'cover', borderRadius: 6 }, textContainer: { flex: 1, height: '100%', flexDirection: 'column', padding: 4, justifyContent: 'flex-start', alignItems: 'flex-start' }, title: { fontWeight: 'bold', fontSize: 12 }, description: { fontSize: 12 } }); const onPress = (url) => { Linking.openURL(url); }; const Url = ({ url }) => { if (!url) { return null; } return ( onPress(url.url)} style={styles.button}> {url.title} {url.description} ); }; Url.propTypes = { url: PropTypes.object.isRequired }; export default Url;