diff --git a/frontend/src/screens/LoginScreen.tsx b/frontend/src/screens/LoginScreen.tsx index bc81ca9..c20497e 100644 --- a/frontend/src/screens/LoginScreen.tsx +++ b/frontend/src/screens/LoginScreen.tsx @@ -1,11 +1,6 @@ import React, { useState, useEffect } from 'react'; -<<<<<<< HEAD import { View, StyleSheet, KeyboardAvoidingView, Platform, ScrollView, Dimensions, TouchableOpacity } from 'react-native'; -import { TextInput, Button, Text, Headline, HelperText, Surface } from 'react-native-paper'; -======= -import { View, StyleSheet, KeyboardAvoidingView, Platform, ScrollView, Dimensions } from 'react-native'; -import { TextInput, Button, Text, Headline, HelperText, useTheme } from 'react-native-paper'; ->>>>>>> a3ad9832ae1663e2a76b50c417d43bcb23a0e03a +import { TextInput, Button, Text, Headline, HelperText, Surface, useTheme } from 'react-native-paper'; import { useMutation } from '@apollo/client'; import { LOGIN } from '../graphql/mutations'; import { useAuth } from '../contexts/AuthContext'; @@ -95,8 +90,6 @@ export const LoginScreen = ({ navigation }: any) => { }; }); - - const handleButtonPressIn = () => { buttonScale.value = withSpring(0.95); }; @@ -106,7 +99,6 @@ export const LoginScreen = ({ navigation }: any) => { }; return ( -<<<<<<< HEAD { - - - - Вход в Prism - Добро пожаловать обратно - - - - { - inputFocusAnimation1.value = withSpring(1); - }} - onBlur={() => { - inputFocusAnimation1.value = withSpring(0); - }} - /> - - - - setShowPassword(!showPassword)} - color="#a855f7" - /> - } - onFocus={() => { - inputFocusAnimation2.value = withSpring(1); - }} - onBlur={() => { - inputFocusAnimation2.value = withSpring(0); - }} - /> - - - {error && ( - - {error.message} - - )} - - - - - -