Add live captions viewer and language selection

This commit is contained in:
Adolfo Reyna
2026-02-26 22:31:04 -05:00
parent c508ea8fea
commit 74d84470a9
5 changed files with 204 additions and 0 deletions

5
App.js
View File

@@ -30,6 +30,7 @@ import NewGroup from './Views/NewGroup.js';
import Slideshow from './Views/Slideshow.js';
import SongPlayer from './Views/SongPlayer.js';
import GlobalChat from './Views/GlobalChat.js';
import LiveCaptions from './Views/LiveCaptions.js';
import BiblePicker from './Views/BiblePicker.js';
import BibleChapterView from './Views/BibleChapterView.js';
import Bible from './Views/Bible.js';
@@ -429,6 +430,10 @@ export default function App() {
name="GlobalChat"
component={GlobalChat}
/>
<Stack.Screen
name="LiveCaptions"
component={LiveCaptions}
/>
<Stack.Screen
name="BiblePicker"
component={BiblePicker}