From 6ff7c459e3d08ebdf6da6973ebe0410b5cab9c0a Mon Sep 17 00:00:00 2001 From: Alberto-Duarte Date: Thu, 11 May 2023 11:40:35 +0100 Subject: first commit --- screens/passwordRecovery.js | 54 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 screens/passwordRecovery.js (limited to 'screens/passwordRecovery.js') diff --git a/screens/passwordRecovery.js b/screens/passwordRecovery.js new file mode 100644 index 0000000..61a5f10 --- /dev/null +++ b/screens/passwordRecovery.js @@ -0,0 +1,54 @@ +import { + Keyboard, + KeyboardAvoidingView, + Platform, + Pressable, + SafeAreaView, + Text, + TextInput, + TouchableWithoutFeedback, + View, +} from 'react-native'; + +import tw from 'twrnc'; + +import Logo from '../static/images/netflix-logo.svg'; + +const PasswordRecovery = ({navigation}) => { + return ( + + { + Keyboard.dismiss(); + }} + > + + + + + Recuperar contraseƱa + + + Recuperar contraseƱa + + navigation.goBack()} style={tw`mb-16`}> + Volver + + + + + + ); +}; + +export default PasswordRecovery; -- cgit v1.2.3-54-g00ecf