Browse Source

Adjusted 'options' button on tx list

localNotifications
Marcos Rodriguez Vélez 6 years ago
parent
commit
dd3d8a1519
  1. 2
      ios/BlueWallet/Info.plist
  2. 4
      screen/wallets/transactions.js

2
ios/BlueWallet/Info.plist

@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>156</string>
<string>157</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>

4
screen/wallets/transactions.js

@ -29,7 +29,7 @@ export default class WalletTransactions extends Component {
return {
headerRight: (
<TouchableOpacity
style={{ marginHorizontal: 8 }}
style={{ marginHorizontal: 8, minWidth: 150 }}
onPress={() =>
navigation.navigate('WalletDetails', {
address: navigation.state.params.wallet.getAddress(),
@ -37,7 +37,7 @@ export default class WalletTransactions extends Component {
})
}
>
<Text style={{ color: '#fff', fontSize: 20, fontWeight: '500' }}>{loc.wallets.options}</Text>
<Text style={{ color: '#fff', fontSize: 20, fontWeight: '500', textAlign: 'right' }}>{loc.wallets.options}</Text>
</TouchableOpacity>
),
headerStyle: {

Loading…
Cancel
Save