Uppdate Styles and button text.
This commit is contained in:
parent
58784ed446
commit
5e87dd0ad8
1 changed files with 2 additions and 2 deletions
|
@ -46,9 +46,9 @@ class WalletAddress extends React.PureComponent<Props> {
|
||||||
render() {
|
render() {
|
||||||
const { receiveAddress, getNewAddress, gettingNewAddress } = this.props;
|
const { receiveAddress, getNewAddress, gettingNewAddress } = this.props;
|
||||||
const { showQr } = this.state;
|
const { showQr } = this.state;
|
||||||
const qrButtonText = showQr ? "Hide QR Address" : "Show QR Address";
|
const qrButtonText = showQr ? "Hide QR" : "Show QR";
|
||||||
return (
|
return (
|
||||||
<View>
|
<View style={walletStyle.card}>
|
||||||
<Text style={walletStyle.title}>Receive Credits</Text>
|
<Text style={walletStyle.title}>Receive Credits</Text>
|
||||||
<Text style={[walletStyle.text, walletStyle.bottomMarginMedium]}>Use this wallet address to receive credits sent by another user (or yourself).</Text>
|
<Text style={[walletStyle.text, walletStyle.bottomMarginMedium]}>Use this wallet address to receive credits sent by another user (or yourself).</Text>
|
||||||
<Address address={receiveAddress} style={walletStyle.bottomMarginSmall} />
|
<Address address={receiveAddress} style={walletStyle.bottomMarginSmall} />
|
||||||
|
|
Loading…
Reference in a new issue