skip to Main Content

React native – com.facebook.react.uimanager.events.EventDispatcher.com.facebook.react.uimanager.UiManagerModule.getEventDispatcher() on a null object reference

import React, { useRef, useState, useEffect } from 'react'; import { StyleSheet, View, Text } from 'react-native'; import { RNCamera } from 'react-native-camera'; const Registration = () => { const cameraRef = useRef(null); const [cameraReady, setCameraReady] = useState(false); useEffect(() =>…

VIEW QUESTION

React native – I can't seem to find out why my code is failing to get a snapshot in my react expo project

import { View, StyleSheet, Platform } from 'react-native'; import * as ImagePicker from 'expo-image-picker'; import { useState, useRef } from 'react'; import { GestureHandlerRootView } from 'react-native-gesture-handler'; import * as MediaLibrary from 'expo-media-library'; import { captureRef } from 'react-native-view-shot'; import…

VIEW QUESTION
Back To Top
Search