Browse Source

ADD: link to open coinb.in to verify txhex

localNotifications
Overtorment 6 years ago
committed by Igor Korsakov
parent
commit
b2037a6435
  1. 5
      screen/send/create.js

5
screen/send/create.js

@ -1,5 +1,5 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { TextInput, TouchableOpacity, Clipboard, StyleSheet, ScrollView } from 'react-native'; import { TextInput, Linking, TouchableOpacity, Clipboard, StyleSheet, ScrollView } from 'react-native';
import { Text } from 'react-native-elements'; import { Text } from 'react-native-elements';
import { BlueNavigationStyle, SafeBlueArea, BlueCard, BlueText } from '../../BlueComponents'; import { BlueNavigationStyle, SafeBlueArea, BlueCard, BlueText } from '../../BlueComponents';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
@ -61,6 +61,9 @@ export default class SendCreate extends Component {
<TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Clipboard.setString(this.state.tx)}> <TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Clipboard.setString(this.state.tx)}>
<Text style={{ color: '#0c2550', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Copy and broadcast later</Text> <Text style={{ color: '#0c2550', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Copy and broadcast later</Text>
</TouchableOpacity> </TouchableOpacity>
<TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Linking.openURL('https://coinb.in/#verify')}>
<Text style={{ color: '#0c2550', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Open coinb.in/#verify</Text>
</TouchableOpacity>
</BlueCard> </BlueCard>
<BlueCard> <BlueCard>
<Text style={styles.transactionDetailsTitle}>{loc.send.create.to}</Text> <Text style={styles.transactionDetailsTitle}>{loc.send.create.to}</Text>

Loading…
Cancel
Save