mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
FIX: unclickable 'import wallet'
This commit is contained in:
parent
8a89405746
commit
4b8215d490
2 changed files with 14 additions and 6 deletions
|
@ -542,6 +542,12 @@ export class BlueSpacing20 extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
export class BlueSpacing10 extends Component {
|
||||
render() {
|
||||
return <View {...this.props} style={{ height: 10, opacity: 0 }} />;
|
||||
}
|
||||
}
|
||||
|
||||
export class BlueList extends Component {
|
||||
render() {
|
||||
return (
|
||||
|
|
|
@ -14,6 +14,7 @@ import {
|
|||
BlueNavigationStyle,
|
||||
BlueButtonLink,
|
||||
BlueSpacing20,
|
||||
BlueSpacing10,
|
||||
} from '../../BlueComponents';
|
||||
import { RadioGroup, RadioButton } from 'react-native-flexi-radio-button';
|
||||
import PropTypes from 'prop-types';
|
||||
|
@ -317,13 +318,14 @@ export default class WalletsAdd extends Component {
|
|||
) : (
|
||||
<ActivityIndicator />
|
||||
)}
|
||||
<BlueButtonLink
|
||||
title={loc.wallets.add.import_wallet}
|
||||
onPress={() => {
|
||||
this.props.navigation.navigate('ImportWallet');
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<BlueSpacing10 />
|
||||
<BlueButtonLink
|
||||
title={loc.wallets.add.import_wallet}
|
||||
onPress={() => {
|
||||
this.props.navigation.navigate('ImportWallet');
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
</KeyboardAvoidingView>
|
||||
</SafeBlueArea>
|
||||
|
|
Loading…
Add table
Reference in a new issue