Quiero exportar la imagen usando React Native View Shot, pero hay un problema, ¿cómo es que la imagen no quiere exportarse? Entonces hay un error como este. En inglés, es como "el disparo no puede recibir un mensaje vacío". 
este es mi codigo
import ViewShot, { captureScreen } from 'react-native-view-shot'; const viewShotRef = useRef(); const [handleButton, setHandleButton] = useState(true); async function captureViewShot() { setHandleButton(false); const imageURI = await viewShotRef.current.capture(); console.log(imageURI); setHandleButton(true); Share.share({ title: 'Nota', url: imageURI }); } function captureScreenShot() { captureScreen({ format: 'jpg', quality: 0.8, }).then( (uri) => { console.log(uri); Share.share({ title: 'Nota', url: uri }); }, (error) => console.log('IMage gagal to', error) ); }y esta es mi vista
<ViewShot ref={viewShotRef} style={{ flex: 1 }} options={{ format: 'jpg', quality: 1.0 }}> <Table borderStyle={styles.tableStyle}> <Row data={tableHead} style={styles.head} textStyle={styles.text} flexArr={[1, 2, 1, 1]} /> <Rows data={tableData} textStyle={styles.text} flexArr={[1, 2, 1, 1]} /> </Table> </ViewShot>en mi caso necesito 2 exportaciones, a saber, exportar solo la tabla y exportar toda la pantalla, pero ninguna de las dos funciona