Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5796 Name fire-wood-wa Date/Time 25-Sep-2023 12:49:39 PM

Copy text from below
import {useState} from 'react';
import { View, Button, Text, SafeAreaView, StyleSheet } from 'react-native';

// You can import supported modules from npm
import { TextInput} from 'react-native-paper';


export default function App() {

const [user, setUser] = useState('');
const [computer, setComputer] = useState('');
const [winner, setWinner] = useState('');


function getChoice( userChoice )
{


var choices = ['Fire', 'Wood', 'Water'];

index = Math.floor(Math.random() * 3) ;

var computerChoice = choices[index];

setUser(userChoice);
setComputer(computerChoice);

var win = '';

if( userChoice == 'Fire' && computerChoice == 'Fire' )
   win = "Draw"
else if( userChoice == 'Fire' && computerChoice == 'Wood' )
   win = "User"
else if( userChoice == 'Fire' && computerChoice == 'Water' )
   win = "Computer"


else if( userChoice == 'Wood' && computerChoice == 'Fire' )
   win = "Computer"
else if( userChoice == 'Wood' && computerChoice == 'Wood' )
   win = "Draw"
else if( userChoice == 'Wood' && computerChoice == 'Water' )
   win = "User"


else if( userChoice == 'Water' && computerChoice == 'Fire' )
   win = "User"
else if( userChoice == 'Water' && computerChoice == 'Wood' )
   win = "Computer"
else if( userChoice == 'Water' && computerChoice == 'Water' )
   win = "Draw"


setWinner(win);
   

}

  return (

<View style={styles.container}>


<View style={styles.innerContainer}>
<View style={styles.textstyle}>
<Text>Your choice</Text>
</View>

<View style={styles.textinputStyle}>  
     <TextInput
            mode="outlined"        
            dense    
            value = {user}          
                 
            onChangeText={() => {}}
            left={<TextInput.Affix text="$" />}
        />
   </View>
</View>



<View style={styles.innerContainer}>
<View style={styles.textstyle}>
<Text>Computer choice</Text>
</View>

<View style={styles.textinputStyle}>    
     <TextInput
            mode="outlined"        
            dense
            value = {computer}  
                     
            onChangeText={() => {}}
            left={<TextInput.Affix text="$" />}
          />
   </View>
</View>


<View style={styles.innerContainer}>


<View style={styles.textstyle}>
<Text>Winner</Text>
</View>





<View style={styles.textinputStyle}>      
     <TextInput
            mode="outlined"        
            dense
            value = {winner}  
                 
            onChangeText={() => {}}
            left={<TextInput.Affix text="$" />}
          />
   </View>
</View>



<View style={styles.innerContainer}>


<View style={ [styles.textstyle, styles.buttonStyle] }>
<Button  
title="Fire"
onPress={ () => getChoice('Fire')}
/>
</View>

<View style={ [styles.textstyle, styles.buttonStyle] }>
<Button  
title="Wood"
onPress={ () => getChoice('Wood')}
/>
</View>

<View style={ [styles.textstyle, styles.buttonStyle] }>
<Button  
title="Water"
onPress={ () => getChoice('Water')}
/>
</View>
</View>

</View>

  )
}




const styles = StyleSheet.create({
  container: {
    alignItems: 'center'
  },

  innerContainer: {
    flexDirection:'row',
    margin:5,
  },

  textstyle: {
    justifyContent:'center',
    width:70,
  },
  textinputStyle: {
margin:10,
width: 200,
  },

  buttonStyle: {
    margin: 5,
  }

 
});




comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5777 Button 18-Sep-2023 02:31:47 PM
5776 Step1 18-Sep-2023 01:53:15 PM
5775 Hello 18-Sep-2023 01:50:17 PM
5774 123 18-Sep-2023 01:45:52 PM
5773 bijlee 18-Sep-2023 01:41:40 PM
5772 StepMom 18-Sep-2023 01:37:22 PM
5771 Fuc 18-Sep-2023 12:38:14 PM
5770 lab 18-Sep-2023 12:21:41 PM
5769 dani 18-Sep-2023 12:21:30 PM
5768 abc 18-Sep-2023 12:19:36 PM
5767 Only Boys 18-Sep-2023 12:15:25 PM
5766 test 1 16-Sep-2023 11:39:43 AM
5765 New Kiddo 16-Sep-2023 09:05:19 AM
5764 my Video 13-Sep-2023 10:14:44 AM
5763 NEW CHILD 07-Sep-2023 06:40:17 AM
5762 03-Sep-2023 10:57:01 AM
5761 Canine Lingu 02-Sep-2023 01:41:53 PM
5760 Fix Child 29-Aug-2023 06:40:56 AM
5759 27-Aug-2023 01:33:04 PM
5758 Anime 26-Aug-2023 02:35:13 PM
5757 New Child 23-Aug-2023 11:35:24 AM
5756 ee 20-Aug-2023 03:52:39 PM
5755 20-Aug-2023 10:53:49 AM
5754 Child 12-Aug-2023 06:45:08 AM
5753 SexyGirl 11-Aug-2023 09:07:17 AM
5752 11-Aug-2023 07:27:51 AM
5751 08-Aug-2023 07:02:27 PM
5750 Test 1 03-Aug-2023 01:08:58 PM
5749 CHILD HOT 03-Aug-2023 08:06:54 AM
5748 31-Jul-2023 05:20:29 PM

[First] [Prev] 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