mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
Merge pull request #7516 from BlueWallet/sele
FIX: Allow text to be selectable
This commit is contained in:
commit
791cbd5f94
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import { RouteProp, useFocusEffect, useNavigation, useRoute } from '@react-navigation/native';
|
||||
import React, { useCallback, useMemo, useReducer, useRef } from 'react';
|
||||
import { ActivityIndicator, InteractionManager, ScrollView, StyleSheet, TextInput, View } from 'react-native';
|
||||
import { ActivityIndicator, InteractionManager, ScrollView, StyleSheet, Text, View } from 'react-native';
|
||||
import { BlueSpacing20, BlueText } from '../../BlueComponents';
|
||||
import { TWallet } from '../../class/wallets/types';
|
||||
import { DynamicQRCode } from '../../components/DynamicQRCode';
|
||||
|
@ -178,9 +178,9 @@ const ExportMultisigCoordinationSetup: React.FC = () => {
|
|||
)}
|
||||
|
||||
<BlueSpacing20 />
|
||||
<TextInput multiline editable={false} style={[styles.secret, stylesHook.secret]}>
|
||||
<Text selectable style={[styles.secret, stylesHook.secret]}>
|
||||
{xpub}
|
||||
</TextInput>
|
||||
</Text>
|
||||
</>
|
||||
) : null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue