This commit is contained in:
Philip Cesar Garay
2025-07-31 21:25:33 +08:00
parent 5cfbc81e3a
commit 84fc719a10
307 changed files with 46470 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import React from "react";
import { Text, View } from "react-native";
import Button from "../components/Button";
import { gutters } from "../styles";
import { navigate } from "../navigation/NavigationService";
import { Routes } from "../navigation";
export default ({ navigation }) => {
return (
<View
style={{
flex: 1,
justifyContent: "flex-end",
padding: gutters,
paddingBottom: gutters * 2,
}}
>
<Button text="WRITING" onPress={() => navigate(Routes.Writing)} />
</View>
);
};