mirror of
https://github.com/tooot-app/app
synced 2024-12-28 02:10:02 +01:00
Added post placeholder
This commit is contained in:
parent
8f6c5af0fd
commit
3c25f4b36a
@ -12,6 +12,7 @@ import { StatusBar } from 'expo-status-bar'
|
||||
|
||||
import Local from 'src/stacks/Local'
|
||||
import Public from 'src/stacks/Public'
|
||||
import Post from 'src/stacks/Post'
|
||||
import Notifications from 'src/stacks/Notifications'
|
||||
import Me from 'src/stacks/Me'
|
||||
|
||||
@ -54,6 +55,7 @@ export default function Index () {
|
||||
>
|
||||
<Tab.Screen name='Local' component={Local} />
|
||||
<Tab.Screen name='Public' component={Public} />
|
||||
<Tab.Screen name='Post' component={Post} />
|
||||
<Tab.Screen name='Notifications' component={Notifications} />
|
||||
<Tab.Screen name='Me' component={Me} />
|
||||
</Tab.Navigator>
|
||||
|
24
src/stacks/Post.jsx
Normal file
24
src/stacks/Post.jsx
Normal file
@ -0,0 +1,24 @@
|
||||
import React from 'react'
|
||||
import { View } from 'react-native'
|
||||
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
||||
|
||||
import Base from './Me/Base'
|
||||
import Authentication from 'src/stacks/Me/Authentication'
|
||||
|
||||
const Stack = createNativeStackNavigator()
|
||||
|
||||
export default function Post () {
|
||||
return (
|
||||
// <Stack.Navigator>
|
||||
// <Stack.Screen name='Me-Base' component={Base} />
|
||||
// <Stack.Screen
|
||||
// name='Me-Authentication'
|
||||
// component={Authentication}
|
||||
// options={{
|
||||
// stackPresentation: 'modal'
|
||||
// }}
|
||||
// />
|
||||
// </Stack.Navigator>
|
||||
<View></View>
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue
Block a user