Add slideshow

This commit is contained in:
Adolfo Reyna
2023-05-06 22:58:16 -04:00
parent 022fd75fa5
commit 0b57db225d
5 changed files with 1023 additions and 10766 deletions

5
App.js
View File

@@ -26,6 +26,7 @@ import MediaView from './components/MediaView.js';
import { useSnapshot } from 'valtio';
import GlobalState from './contexts/GlobalState.js';
import NewGroup from './Views/NewGroup.js';
import Slideshow from './Views/Slideshow.js';
const Tab = createBottomTabNavigator();
@@ -308,6 +309,10 @@ export default function App() {
<Stack.Screen
name="Notifications"
component={NotificationsView}
/>
<Stack.Screen
name="Slideshow"
component={Slideshow}
/>
<Stack.Screen name="SinglePost" component={SinglePost} />
<Stack.Screen name="Login" component={Login} options={{ headerShown: false }} />