Skip to content

Commit 72a6472

Browse files
committed
drawer routes
1 parent 6214a96 commit 72a6472

19 files changed

+392
-18
lines changed

babel.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module.exports = function (api) {
44
presets: [
55
["babel-preset-expo", { jsxImportSource: "nativewind" }],
66
"nativewind/babel",
7-
],
7+
]
88
};
99
};

package-lock.json

+44-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"dependencies": {
1616
"@expo-google-fonts/roboto": "^0.2.3",
1717
"@expo/vector-icons": "^14.0.0",
18+
"@react-navigation/drawer": "^6.6.15",
1819
"@react-navigation/native": "^6.0.2",
1920
"clsx": "^2.1.0",
2021
"expo": "~50.0.14",
@@ -30,7 +31,7 @@
3031
"react-dom": "18.2.0",
3132
"react-native": "0.73.6",
3233
"react-native-gesture-handler": "~2.14.0",
33-
"react-native-reanimated": "^3.8.1",
34+
"react-native-reanimated": "~3.6.2",
3435
"react-native-safe-area-context": "4.8.2",
3536
"react-native-screens": "~3.29.0",
3637
"react-native-web": "~0.19.6",

src/@types/navigation.d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { DrawerNavigationOptions } from "@react-navigation/drawer"
2+
import { IconNameType } from "@/components/drawer-button"
3+
4+
interface CustomOptions extends DrawerNavigationOptions {
5+
iconName: IconNameType
6+
isDivider?: boolean
7+
notifications?: number
8+
sectionTitle?: string
9+
}

src/app/(drawer)/(tabs)/_layout.tsx

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
import { colors } from "@/styles/colors";
2+
import { MaterialIcons } from "@expo/vector-icons";
3+
import { Tabs } from "expo-router";
4+
5+
export default function TabLayout() {
6+
return (
7+
<Tabs
8+
screenOptions={{
9+
headerShown: false,
10+
tabBarStyle: {
11+
backgroundColor: colors.gray[600],
12+
borderTopWidth: 0,
13+
minHeight: 74,
14+
},
15+
tabBarShowLabel: false,
16+
tabBarActiveTintColor: colors.orange[500],
17+
tabBarInactiveTintColor: colors.gray[400],
18+
tabBarItemStyle: {
19+
paddingBottom: 34,
20+
paddingTop: 14
21+
}
22+
}}
23+
>
24+
<Tabs.Screen name="index"
25+
options={{
26+
tabBarIcon: ({ size, color }) => (
27+
<MaterialIcons name="email" size={size} color={color} />
28+
)
29+
}}
30+
/>
31+
<Tabs.Screen name="chat"
32+
options={{
33+
tabBarIcon: ({ size, color }) => (
34+
<MaterialIcons name="chat-bubble" size={size} color={color} />
35+
)
36+
}}
37+
/>
38+
<Tabs.Screen name="meeting"
39+
options={{
40+
tabBarIcon: ({ size, color }) => (
41+
<MaterialIcons name="videocam" size={size + 4} color={color} />
42+
)
43+
}}
44+
/>
45+
</Tabs>
46+
)
47+
}

src/app/(drawer)/(tabs)/chat.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Text, View } from "react-native";
2+
3+
export default function Chat() {
4+
return (
5+
<View className="flex-1 bg-gray-900 pt-14 p-4 items-center justify-center">
6+
<Text className="text-white text-2xl font-heading">
7+
Chat
8+
</Text>
9+
</View>
10+
)
11+
}

src/app/(tabs)/index.tsx src/app/(drawer)/(tabs)/index.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { View, FlatList, Text } from 'react-native';
22

3-
import Input from '../components/input';
4-
import { MenuButton } from '../components/menu-button';
5-
import { Avatar } from '../components/avatar';
6-
import { Email } from '../components/email';
3+
import Input from '../../../components/input';
4+
import { MenuButton } from '../../../components/menu-button';
5+
import { Avatar } from '../../../components/avatar';
6+
import { Email } from '../../../components/email';
77
import { EMAILS } from '@/utils/emails';
8+
import { FloatButton } from '../../../components/float-button';
89

910
export default function Home() {
1011
return (
@@ -29,6 +30,8 @@ export default function Home() {
2930
</Text>
3031
)}
3132
/>
33+
34+
<FloatButton icon="edit" />
3235
</View>
3336
)
3437
}

src/app/(drawer)/(tabs)/meeting.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Text, View } from "react-native";
2+
3+
export default function Meeting() {
4+
return (
5+
<View className="flex-1 bg-gray-900 pt-14 p-4 items-center justify-center">
6+
<Text className="text-white text-2xl font-heading">
7+
Meeting
8+
</Text>
9+
</View>
10+
)
11+
}

0 commit comments

Comments
 (0)