Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5872 Name code Date/Time 20-Dec-2023 10:38:07 AM

Copy text from below

import React, { useState, useRef } from 'react';

import { StyleSheet, Text, View, TouchableOpacity } from 'react-native';

import { Camera } from 'expo-camera';

import { Video } from 'expo-av';

 

export default function App() {

  const [hasPermission, setHasPermission] = useState(null);

  const [cameraType, setCameraType] = useState(Camera.Constants.Type.back);

  const [isRecording, setIsRecording] = useState(false);

  const cameraRef = useRef(null);

  const videoRef = useRef(null);

 

  const startRecord = async () => {

    if (cameraRef.current) {

      try {

        const { uri } = await cameraRef.current.recordAsync();

        console.log('Recording started:', uri);

        setIsRecording(true);

      } catch (error) {

        console.error('Error starting recording:', error);

      }

    }

  };

 

  const stopRecord = async () => {

    if (cameraRef.current) {

      try {

        const { uri } = await cameraRef.current.stopRecording();

        console.log('Recording stopped:', uri);

        setIsRecording(false);

      } catch (error) {

        console.error('Error stopping recording:', error);

      }

    }

  };

 

  const takePicture = async () => {

    if (cameraRef.current) {

      try {

        const { uri } = await cameraRef.current.takePictureAsync();

        console.log('Picture taken:', uri);

      } catch (error) {

        console.error('Error taking picture:', error);

      }

    }

  };

 

  const switchCamera = () => {

    setCameraType(

      cameraType === Camera.Constants.Type.back

        ? Camera.Constants.Type.front

        : Camera.Constants.Type.back

    );

  };

 

  const onCameraPermission = async () => {

    const { status } = await Camera.requestPermissionsAsync();

    setHasPermission(status === 'granted');

  };

 

  if (hasPermission === null) {

    return <View />;

  }

 

  if (hasPermission === false) {

    return <Text>No access to camera</Text>;

  }

 

  return (

    <View style={styles.container}>

      <Camera

        style={styles.camera}

        type={cameraType}

        ref={cameraRef}

        onCameraReady={() => console.log('Camera ready')}

      >

        <View style={styles.controls}>

          <TouchableOpacity

            style={styles.button}

            onPress={isRecording ? stopRecord : startRecord}

          >

            <Text style={styles.text}>{isRecording ? 'Stop' : 'Record'}</Text>

          </TouchableOpacity>

          <TouchableOpacity style={styles.button} onPress={takePicture}>

            <Text style={styles.text}>Take Picture</Text>

          </TouchableOpacity>

          <TouchableOpacity style={styles.button} onPress={switchCamera}>

            <Text style={styles.text}>Switch Camera</Text>

          </TouchableOpacity>

        </View>

      </Camera>

      {isRecording && (

        <Video

          ref={videoRef}

          style={styles.videoPreview}

          source={{ uri: 'http://d23dyxeqlo5psv.cloudfront.net/big_buck_bunny.mp4' }}

          useNativeControls

        />

      )}

    </View>

  );

}

 

const styles = StyleSheet.create({

  container: {

    flex: 1,

  },

  camera: {

    flex: 1,

  },

  controls: {

    flex: 1,

    flexDirection: 'row',

    justifyContent: 'center',

    alignItems: 'flex-end',

    marginBottom: 20,

  },

  button: {

    backgroundColor: 'white',

    borderRadius: 5,

    padding: 15,

    marginHorizontal: 10,

  },

  text: {

    fontSize: 16,

  },

  videoPreview: {

    flex: 1,

    position: 'absolute',

    top: 0,

    left: 0,

    right: 0,

    bottom: 0,

  },

});

 





comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5805 q 4 26-Sep-2023 05:19:19 PM
5804 111 26-Sep-2023 04:45:42 PM
5803 comp 26-Sep-2023 04:14:07 PM
5802 COlor 25-Sep-2023 03:03:06 PM
5801 islamabad 25-Sep-2023 02:56:47 PM
5800 Ikack 25-Sep-2023 02:27:21 PM
5799 Blue Green n 25-Sep-2023 02:01:07 PM
5798 Jask 25-Sep-2023 01:59:04 PM
5797 Blue Green 25-Sep-2023 01:59:02 PM
5796 fire-wood-wa 25-Sep-2023 12:49:39 PM
5795 6001 25-Sep-2023 11:54:34 AM
5794 23-Sep-2023 08:28:04 PM
5793 Child Hot 22-Sep-2023 11:53:03 AM
5792 dfd 22-Sep-2023 10:42:45 AM
5791 Codeeee 22-Sep-2023 09:44:28 AM
5790 HEC 22-Sep-2023 09:41:20 AM
5789 llllllllll 22-Sep-2023 09:20:11 AM
5788 Man 22-Sep-2023 08:58:04 AM
5787 ssss 22-Sep-2023 08:55:24 AM
5786 2 21-Sep-2023 10:40:17 AM
5785 fire wood 21-Sep-2023 10:34:52 AM
5784 calculator 21-Sep-2023 10:09:45 AM
5783 t1 21-Sep-2023 10:02:23 AM
5782 test 21-Sep-2023 09:39:22 AM
5781 design_new 21-Sep-2023 09:09:57 AM
5780 calc_design 21-Sep-2023 08:59:28 AM
5779 stepsis 19-Sep-2023 05:53:02 PM
5778 good 19-Sep-2023 05:51:44 PM
5777 Button 18-Sep-2023 02:31:47 PM
5776 Step1 18-Sep-2023 01:53:15 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