React Native 扫描二维码实现

import {RNCamera}from 'react-native-camera';

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

import {

StyleSheet,

  Animated,

  PermissionsAndroid,

  default as Easing,

  ImageBackground,

  View,

  Text,

}from 'react-native';

let camera;

const ScanQRCode = () => {

const moveAnim =useRef(new Animated.Value(-2)).current;

  useEffect(() => {

requestCameraPermission();

    startAnimation();

    // eslint-disable-next-line react-hooks/exhaustive-deps

  }, []);

  //请求权限的方法

  const requestCameraPermission =async () => {

try {

const granted =await PermissionsAndroid.request(

PermissionsAndroid.PERMISSIONS.CAMERA,

        {

title:'申请摄像头权限',

          message:'扫描二维码需要开启相机权限',

          buttonNeutral:'等会再问我',

          buttonNegative:'不行',

          buttonPositive:'好吧',

        },

      );

      if (granted ===PermissionsAndroid.RESULTS.GRANTED) {

console.log('现在你获得摄像头权限了');

      }else {

console.log('用户没有允许相机权限');

      }

}catch (err) {

console.warn(err);

    }

};

  /** 扫描框动画*/

  const startAnimation = () => {

Animated.sequence([

Animated.timing(moveAnim, {

toValue:200,

        duration:1500,

        easing:Easing.linear,

        useNativeDriver:false,

      }),

      Animated.timing(moveAnim, {

toValue: -1,

        duration:1500,

        easing:Easing.linear,

        useNativeDriver:false,

      }),

    ]).start(() =>startAnimation());

  };

  const onBarCodeRead = (result) => {

const {data} = result; //只要拿到data就可以了

//扫码后的操作

    console.log(data);

    alert(data);

  };

  return (

<View style={styles.container}>

        ref={(ref) => {

camera = ref;

        }}

autoFocus={RNCamera.Constants.AutoFocus.on}/*自动对焦*/

        style={[styles.preview]}

type={RNCamera.Constants.Type.back}/*切换前后摄像头 front前back后*/

        flashMode={RNCamera.Constants.FlashMode.off}/*相机闪光模式*/

        onBarCodeRead={onBarCodeRead}>

          style={{

width:500,

            height:220,

            backgroundColor:'rgba(0,0,0,0.5)',

          }}

/>

        <View style={[{flexDirection:'row'}]}>

            style={{

backgroundColor:'rgba(0,0,0,0.5)',

              height:200,

              width:200,

            }}

/>

            source={require('./assets/qrcode_bg.png')}

style={{width:200, height:200}}>

              style={[styles.border, {transform: [{translateY: moveAnim}]}]}

/>

            style={{

backgroundColor:'rgba(0,0,0,0.5)',

              height:200,

              width:200,

            }}

/>

          style={{

flex:1,

            backgroundColor:'rgba(0, 0, 0, 0.5)',

            width:500,

            alignItems:'center',

          }}>

          <Text style={styles.rectangleText}>

            将二维码放入框内,即可自动扫描

  );

};

const styles =StyleSheet.create({

container: {

flex:1,

    flexDirection:'row',

  },

  preview: {

flex:1,

    justifyContent:'center',

    alignItems:'center',

  },

  rectangleContainer: {

flex:1,

    justifyContent:'flex-end',

    alignItems:'center',

  },

  rectangle: {

height:200,

    width:200,

    borderWidth:1,

    borderColor:'#fcb602',

    backgroundColor:'transparent',

    borderRadius:10,

  },

  rectangleText: {

flex:0,

    color:'#fff',

    marginTop:10,

  },

  border: {

flex:0,

    width:196,

    height:2,

    backgroundColor:'#fcb602',

    borderRadius:50,

  },

});

export default ScanQRCode;

使用到了react-native-camera组件,

安装方法请参照官网:

https://react-native-community.github.io/react-native-camera/docs/installation.html


效果如下:


最终效果图

素材:


素材文件,png的,中间是透明的


参考:

https://blog.csdn.net/qq_38356174/article/details/95360470

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。