📅  最后修改于: 2022-03-11 15:03:48.827000             🧑  作者: Mango
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 ( ); }}