1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Status actions done, awaiting account actions

This commit is contained in:
Zhiyuan Zheng
2020-11-06 00:59:33 +01:00
parent 04b7b0a7b9
commit c08c25e3b5
13 changed files with 6743 additions and 391 deletions

View File

@ -7,6 +7,7 @@ import React from 'react'
import { Feather } from '@expo/vector-icons'
import store from 'src/stacks/common/store'
import { Provider } from 'react-redux'
import Toast from 'react-native-toast-message'
import { StatusBar } from 'expo-status-bar'
import Local from 'src/stacks/Local'
@ -22,6 +23,7 @@ export const Index: React.FC = () => {
return (
<Provider store={store}>
<StatusBar style='auto' />
<NavigationContainer>
<Tab.Navigator
screenOptions={({ route }) => ({
@ -62,6 +64,8 @@ export const Index: React.FC = () => {
<Tab.Screen name='Notifications' component={Notifications} />
<Tab.Screen name='Me' component={Me} />
</Tab.Navigator>
<Toast ref={(ref: any) => Toast.setRef(ref)} />
</NavigationContainer>
</Provider>
)