Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions mobile/src/navigation/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import VisitsScreen from '@screens/VisitsScreen';
import MedicationsScreen from '@screens/MedicationsScreen';
import VaccinationsScreen from '../screens/VaccinationsScreen';
import WeightManagementScreen from '../screens/WeightManagementScreen';
import CalendarScreen from '@screens/CalendarScreen';

const Stack = createNativeStackNavigator();
const Tab = createBottomTabNavigator();
Expand Down Expand Up @@ -236,6 +237,14 @@ export default function Navigation() {
headerBackTitle: 'Takaisin',
}}
/>
<Stack.Screen
name="Calendar"
component={CalendarScreen}
options={{
title: 'Kalenteri',
headerBackTitle: 'Takaisin',
}}
/>
</>
) : (
<>
Expand Down
Loading
Loading