Added react navigation drawer, initial template pages, and drawer sidebar design

This commit is contained in:
Keannu Christian Bernasol 2023-07-03 16:18:39 +08:00
parent 1bb5be84ea
commit 428a228278
19 changed files with 978 additions and 17 deletions

20
src/routes/Home/Home.tsx Normal file
View file

@ -0,0 +1,20 @@
import * as React from "react";
import styles from "../../styles";
import { font_sizes } from "../../styles";
import { View, Text } from "react-native";
export default function Home() {
return (
<View style={styles.background}>
<Text
style={{
fontSize: font_sizes.large,
color: "white",
textAlign: "center",
}}
>
Template Homepage
</Text>
</View>
);
}