Browse Source

FIX: Fixed spacing between items in LND Invoice view

zigzag v3.5.0
Marcos Rodriguez Vélez 6 years ago
parent
commit
ae93dd453b
  1. 4
      ios/BlueWallet/Info.plist
  2. 2
      screen/lnd/lndViewInvoice.js

4
ios/BlueWallet/Info.plist

@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.5.0</string>
<string>3.5.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
@ -33,7 +33,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>200</string>
<string>201</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>

2
screen/lnd/lndViewInvoice.js

@ -165,7 +165,7 @@ export default class LNDViewInvoice extends Component {
fgColor={BlueApp.settings.brandingColor}
bgColor={BlueApp.settings.foregroundColor}
/>
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', paddingHorizontal: 16 }}>
<View style={{ justifyContent: 'center', alignItems: 'center', marginVertical: 16, paddingHorizontal: 16 }}>
{invoice && invoice.amt && <BlueText>Please pay {invoice.amt} sats</BlueText>}
{invoice && invoice.description && <BlueText>For: {invoice.description}</BlueText>}
<TouchableOpacity onPress={this.copyToClipboard}>

Loading…
Cancel
Save