mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +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 {
|
export class BlueList extends Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -14,6 +14,7 @@ import {
|
||||||
BlueNavigationStyle,
|
BlueNavigationStyle,
|
||||||
BlueButtonLink,
|
BlueButtonLink,
|
||||||
BlueSpacing20,
|
BlueSpacing20,
|
||||||
|
BlueSpacing10,
|
||||||
} from '../../BlueComponents';
|
} from '../../BlueComponents';
|
||||||
import { RadioGroup, RadioButton } from 'react-native-flexi-radio-button';
|
import { RadioGroup, RadioButton } from 'react-native-flexi-radio-button';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
@ -317,13 +318,14 @@ export default class WalletsAdd extends Component {
|
||||||
) : (
|
) : (
|
||||||
<ActivityIndicator />
|
<ActivityIndicator />
|
||||||
)}
|
)}
|
||||||
<BlueButtonLink
|
|
||||||
title={loc.wallets.add.import_wallet}
|
|
||||||
onPress={() => {
|
|
||||||
this.props.navigation.navigate('ImportWallet');
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</View>
|
</View>
|
||||||
|
<BlueSpacing10 />
|
||||||
|
<BlueButtonLink
|
||||||
|
title={loc.wallets.add.import_wallet}
|
||||||
|
onPress={() => {
|
||||||
|
this.props.navigation.navigate('ImportWallet');
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
</KeyboardAvoidingView>
|
</KeyboardAvoidingView>
|
||||||
</SafeBlueArea>
|
</SafeBlueArea>
|
||||||
|
|
Loading…
Add table
Reference in a new issue