📜  反应原生更好的相机 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:48.827000             🧑  作者: Mango

代码示例1
import React, { Component } from 'react';import RNBetterCamera from 'react-native-better-camera';; class RNBetterCameraPage extends Component {  onSend = (savedImageUri, textInputValue) => {    console.log('savedUmageUri = ', savedImageUri);    console.log('textInputValue = ', textInputValue);    // send image & text to server  }  onClose = () => {    // navigate to the next page of your application    Actions.home();  }   render() {    return (          );  }}