Browse Source

FIX: Import toolbar touch

master
marcosrdz 5 years ago
committed by Overtorment
parent
commit
9f4c823cdc
  1. 4
      screen/wallets/import.js

4
screen/wallets/import.js

@ -1,6 +1,6 @@
/* global alert */
import React, { useEffect, useState } from 'react';
import { ScrollView, KeyboardAvoidingView, Platform, Dimensions, View, TouchableWithoutFeedback, Keyboard } from 'react-native';
import { ScrollView, KeyboardAvoidingView, Platform, Dimensions, View, Keyboard } from 'react-native';
import {
BlueFormMultiInput,
BlueButtonLink,
@ -63,7 +63,6 @@ const WalletsImport = () => {
return (
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={{ flex: 1, paddingTop: 40 }}>
<ScrollView>
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
<KeyboardAvoidingView behavior="position" enabled>
<BlueFormLabel>{loc.wallets.import.explanation}</BlueFormLabel>
<BlueSpacing20 />
@ -102,7 +101,6 @@ const WalletsImport = () => {
),
})}
</KeyboardAvoidingView>
</TouchableWithoutFeedback>
<BlueSpacing20 />
<View style={{ flex: 1, alignItems: 'center' }}>
<BlueButton

Loading…
Cancel
Save