Added Copy button

This commit is contained in:
Romain CLEMENT 2023-04-03 10:57:34 +02:00
parent 13579385c8
commit 7db1a7e3d3

View File

@ -1,5 +1,6 @@
import React from 'react';
import { View, Text } from 'react-native';
import IconVector from 'react-native-vector-icons/FontAwesome5';
export default class ClipElement extends React.Component<any, any> {
@ -8,8 +9,9 @@ export default class ClipElement extends React.Component<any, any> {
}
render(): JSX.Element {
return <View>
<Text>{this.props.title}</Text>
return <View style={{flex:1,margin:10,flexDirection:'row',justifyContent:'space-between',alignItems:'center'}}>
<Text style={{fontSize:20,}}>{this.props.title}</Text>
<IconVector name="clipboard" size={40} />
</View>;
}
}