mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
FIX: Recipient amount text align
This commit is contained in:
parent
deaf5d710a
commit
a45cba0c30
1 changed files with 2 additions and 4 deletions
|
@ -25,7 +25,7 @@ import RNFS from 'react-native-fs';
|
||||||
import BigNumber from 'bignumber.js';
|
import BigNumber from 'bignumber.js';
|
||||||
import * as bitcoin from 'bitcoinjs-lib';
|
import * as bitcoin from 'bitcoinjs-lib';
|
||||||
|
|
||||||
import { BlueButton, BlueDismissKeyboardInputAccessory, BlueListItem, BlueLoading, BlueText } from '../../BlueComponents';
|
import { BlueButton, BlueDismissKeyboardInputAccessory, BlueListItem, BlueLoading } from '../../BlueComponents';
|
||||||
import { navigationStyleTx } from '../../components/navigationStyle';
|
import { navigationStyleTx } from '../../components/navigationStyle';
|
||||||
import NetworkTransactionFees, { NetworkTransactionFee } from '../../models/networkTransactionFees';
|
import NetworkTransactionFees, { NetworkTransactionFee } from '../../models/networkTransactionFees';
|
||||||
import { BitcoinUnit, Chain } from '../../models/bitcoinUnits';
|
import { BitcoinUnit, Chain } from '../../models/bitcoinUnits';
|
||||||
|
@ -1190,9 +1190,7 @@ const SendDetails = () => {
|
||||||
launchedBy={name}
|
launchedBy={name}
|
||||||
/>
|
/>
|
||||||
{addresses.length > 1 && (
|
{addresses.length > 1 && (
|
||||||
<BlueText style={[styles.of, stylesHook.of]}>
|
<Text style={[styles.of, stylesHook.of]}>{loc.formatString(loc._.of, { number: index + 1, total: addresses.length })}</Text>
|
||||||
{loc.formatString(loc._.of, { number: index + 1, total: addresses.length })}
|
|
||||||
</BlueText>
|
|
||||||
)}
|
)}
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue