Localize app to German, implement auto-save to gallery, always-on camera stream, fix expo-media-library and expo-file-system deprecation/compile errors

This commit is contained in:
2026-05-25 21:39:15 +02:00
parent 99634bb480
commit d8e397eac1
9 changed files with 474 additions and 135 deletions
+7 -2
View File
@@ -87,6 +87,7 @@ export default function App() {
countdownDuration={settings.countdownDuration}
onPhotoCaptured={handlePhotoCaptured}
onCancel={handleReset}
isIdle={false}
/>
);
case 'preview':
@@ -109,8 +110,12 @@ export default function App() {
);
default:
return (
<HomeScreen
onStart={handleStartBooth}
<CameraScreen
countdownDuration={settings.countdownDuration}
onPhotoCaptured={handlePhotoCaptured}
onCancel={handleReset}
isIdle={true}
onStartBooth={handleStartBooth}
onNavigateToAdmin={handleOpenAdmin}
adminPassword={settings.adminPassword}
/>