-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add a user context provider to the app #24
Changes from all commits
21419cb
2bf2125
b566ef5
cefb51e
640851d
f3ee13c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Basically cleanup, but also adding context and paper provider so everywhere has access to RNP and our group and user context |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,17 @@ | ||
import * as React from 'react'; | ||
import { Text } from 'react-native'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import { NavigationContainer, NavigationProp } from '@react-navigation/native'; | ||
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; | ||
import LoginPage from './screens/Login'; | ||
import MedList from './screens/Medication'; | ||
import Home from './assets/home.svg'; | ||
import DocPickerButton from './components/DocPickerButton'; | ||
import { SafeAreaView } from 'react-native-safe-area-context'; | ||
import Router from './navigation/Router'; | ||
import CareWalletProvider from './contexts/CareWalletContext'; | ||
import { PaperProvider } from 'react-native-paper'; | ||
|
||
export type ScreenNames = ['BottomNav', 'Landing', 'TEMP-FileUpload', 'Login']; | ||
export type RootStackParamList = Record<ScreenNames[number], any>; | ||
export type StackNavigation = NavigationProp<RootStackParamList>; | ||
|
||
const Stack = createNativeStackNavigator<RootStackParamList>(); | ||
const Tab = createBottomTabNavigator(); | ||
|
||
// TODO: figure out a way to do this better, I didnt enjoy this way of doing it in SaluTemp there HAS to be a better way | ||
export default function App() { | ||
return ( | ||
<NavigationContainer> | ||
<Stack.Navigator> | ||
<Stack.Screen | ||
name="Login" | ||
options={{ headerShown: true }} | ||
component={LoginPage} | ||
/> | ||
<Stack.Screen | ||
name="BottomNav" | ||
options={{ headerShown: false }} | ||
component={Tabs} | ||
/> | ||
<Stack.Screen | ||
name="TEMP-FileUpload" | ||
options={{ headerShown: true }} | ||
component={DocPickerButton} | ||
/> | ||
</Stack.Navigator> | ||
</NavigationContainer> | ||
); | ||
} | ||
|
||
function Tabs() { | ||
return ( | ||
<Tab.Navigator> | ||
<Tab.Screen | ||
name="Landing" | ||
options={{ | ||
headerShown: true, | ||
tabBarIcon: () => <Home color={'gray'} />, | ||
tabBarLabel: () => <Text>Landing</Text> | ||
}} | ||
component={MedList} | ||
/> | ||
</Tab.Navigator> | ||
<CareWalletProvider> | ||
<SafeAreaView className="flex-1"> | ||
<PaperProvider> | ||
<Router /> | ||
</PaperProvider> | ||
</SafeAreaView> | ||
</CareWalletProvider> | ||
); | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. figured out how to get tailwind to work in RNP lol |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just adding a file input into swagger for file upload