Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5718 Name code Date/Time 29-May-2023 05:50:57 PM

Copy text from below
import React, { useState } from 'react';
import { View, Text, TextInput, TouchableOpacity, StyleSheet } from 'react-native';
import { useNavigation } from '@react-navigation/native';

const Login = () => {
  const [email, setEmail] = useState('');
  const [password, setPassword] = useState('');

  const navigation = useNavigation();

  const handleLogin = () => {
    console.log('Email:', email);
    console.log('Password:', password);

    navigation.goBack();
  };

  return (
    <View style={styles.container}>
      <Text style={styles.title}>Login</Text>

      <TextInput
        style={styles.input}
        placeholder="Email"
        onChangeText={text => setEmail(text)}
        value={email}
      />

      <TextInput
        style={styles.input}
        placeholder="Password"
        secureTextEntry
        onChangeText={text => setPassword(text)}
        value={password}
      />

      <TouchableOpacity style={styles.loginButton} onPress={handleLogin}>
        <Text style={styles.loginButtonText}>Login</Text>
      </TouchableOpacity>
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    paddingHorizontal: 20,
    backgroundColor: 'black',
  },
  title: {
    fontSize: 24,
    fontWeight: 'bold',
    marginBottom: 20,
    color: 'white',
  },
  input: {
    width: '100%',
    height: 40,
    borderColor: 'gray',
    borderWidth: 1,
    borderRadius: 5,
    marginBottom: 10,
    paddingHorizontal: 10,
    color: 'white',
  },
  loginButton: {
    width: '100%',
    height: 40,
    backgroundColor: 'red',
    justifyContent: 'center',
    alignItems: 'center',
    borderRadius: 5,
    marginTop: 20,
  },
  loginButtonText: {
    color: 'white',
    fontSize: 16,
    fontWeight: 'bold',
  },
});

export default Login;




comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5958 conn 13-Jun-2024 01:28:50 PM
5957 main.dart 13-Jun-2024 01:26:55 PM
5956 firebase_op 13-Jun-2024 01:26:23 PM
5955 Blu Atlantic 12-Jun-2024 02:05:39 PM
5954 Bro Love Sis 12-Jun-2024 10:54:46 AM
5953 addmaxexport 07-Jun-2024 05:09:49 PM
5952 geopharmarx 07-Jun-2024 05:06:11 PM
5951 readymedicin 07-Jun-2024 05:05:43 PM
5950 bimatoprost 07-Jun-2024 05:04:48 PM
5949 genericlatis 07-Jun-2024 05:03:55 PM
5948 tapentadol 07-Jun-2024 05:02:57 PM
5947 tapentadol 07-Jun-2024 04:58:42 PM
5946 buytapentado 07-Jun-2024 04:56:36 PM
5945 buytapentado 07-Jun-2024 03:49:54 PM
5944 abc 05-Jun-2024 11:08:02 AM
5943 btn disable 03-Jun-2024 02:39:37 PM
5942 mad 03-Jun-2024 01:59:22 PM
5941 AgencyTowing 29-May-2024 11:52:10 PM
5940 Sexy Kids 22-May-2024 07:44:19 AM
5939 pubspec.yaml 20-May-2024 03:02:28 PM
5938 pubspec.yaml 20-May-2024 02:57:00 PM
5937 Pet Hedgehog 10-May-2024 12:22:01 PM
5936 ACR 09-May-2024 05:04:40 PM
5935 command line 09-May-2024 01:29:48 PM
5934 Child Hot 08-May-2024 08:04:47 AM
5933 . 29-Apr-2024 07:30:15 PM
5932 Al baraka 27-Apr-2024 09:44:24 PM
5931 1111 23-Apr-2024 03:54:24 PM
5930 Savvy Cats 23-Apr-2024 06:52:03 AM
5929 listoclassob 22-Apr-2024 01:21:06 PM

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 [Next] [Last]
 
web counter
web counter


To report any error messages or bugs, or other issues, please send email at: info@pakproject.com