mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 19:16:52 +01:00
Update create.js
This commit is contained in:
parent
6698645f48
commit
3adb90abff
1 changed files with 8 additions and 2 deletions
|
@ -12,7 +12,7 @@ import Share from 'react-native-share';
|
|||
|
||||
import { satoshiToBTC } from '../../blue_modules/currency';
|
||||
import { isDesktop } from '../../blue_modules/environment';
|
||||
import { BlueText } from '../../BlueComponents';
|
||||
import { BlueSpacing20, BlueText } from '../../BlueComponents';
|
||||
import presentAlert from '../../components/Alert';
|
||||
import { DynamicQRCode } from '../../components/DynamicQRCode';
|
||||
import { useTheme } from '../../components/themes';
|
||||
|
@ -140,7 +140,13 @@ const SendCreate = () => {
|
|||
|
||||
const ListHeaderComponent = (
|
||||
<View>
|
||||
{showAnimatedQr && psbt ? <DynamicQRCode value={psbt.toHex()} /> : null}
|
||||
{showAnimatedQr && psbt ? (
|
||||
<>
|
||||
<BlueSpacing20 />
|
||||
<DynamicQRCode value={psbt.toHex()} />
|
||||
<BlueSpacing20 />
|
||||
</>
|
||||
) : null}
|
||||
<BlueText style={[styles.cardText, styleHooks.cardText]}>{loc.send.create_this_is_hex}</BlueText>
|
||||
<TextInput testID="TxhexInput" style={styles.cardTx} height={72} multiline editable={false} value={tx} />
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue