From 8916a195a84727754700c3b9596792ba932df1f8 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto <47038980+reinaldonetof@users.noreply.github.com> Date: Fri, 1 Oct 2021 17:36:59 -0300 Subject: [PATCH] [FIX] Toggle password visibility button not working (#3404) Co-authored-by: Diego Mello --- app/containers/TextInput.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index ae11dcc17..f9c2236a8 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; -import { BorderlessButton } from 'react-native-gesture-handler'; +import Touchable from 'react-native-platform-touchable'; import sharedStyles from '../views/Styles'; import TextInput from '../presentation/TextInput'; @@ -95,9 +95,9 @@ export default class RCTextInput extends React.PureComponent + - + ); } @@ -105,14 +105,14 @@ export default class RCTextInput extends React.PureComponent + - + ); }