FIX: unclickable 'import wallet'

This commit is contained in:
Overtorment 2019-05-22 13:08:31 +01:00
parent 8a89405746
commit 4b8215d490
2 changed files with 14 additions and 6 deletions

View file

@ -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 (

View file

@ -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>