1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Mobile: Upgrade to React Native 0.77 (#12179)

This commit is contained in:
Henry Heino
2025-05-19 15:02:18 -07:00
committed by GitHub
parent cbf6d5506f
commit a4dacd65e6
38 changed files with 4191 additions and 3262 deletions

View File

@@ -18,6 +18,9 @@ import ScannedBarcodes from './ScannedBarcodes';
import { CameraRef } from './Camera/types';
import Camera from './Camera';
import { CameraResult } from './types';
import Logger from '@joplin/utils/Logger';
const logger = Logger.create('CameraView');
interface Props {
themeId: number;
@@ -130,6 +133,7 @@ const CameraViewComponent: React.FC<Props> = props => {
const codeScanner = useBarcodeScanner();
const onCameraReady = useCallback(() => {
logger.debug('Camera ready');
setCameraReady(true);
}, []);