Initial commit

Generated by create-expo-app 3.2.0.
This commit is contained in:
Dennis Hundertmark
2025-02-25 11:38:57 +01:00
commit 0e7f7e1dfd
31 changed files with 18794 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
import { StyleSheet, Text, View } from "react-native";
import React from "react";
import { Stack } from "expo-router";
import { COLORS } from "@/constants/colors";
const Layout = () => {
return (
<Stack
screenOptions={{
headerShadowVisible: false,
headerStyle: {
backgroundColor: COLORS.background,
},
headerTintColor: COLORS.text,
headerTitleStyle: {
fontWeight: "bold",
},
contentStyle: {
backgroundColor: COLORS.background,
},
}}
>
<Stack.Screen name="index" options={{ title: "All Films" }} />
<Stack.Screen
name="[id]"
options={{
title: "Film Details",
}}
/>
</Stack>
);
};
export default Layout;
const styles = StyleSheet.create({});