style: added ShowCard component

This commit is contained in:
Cron1cle
2025-10-02 09:18:44 +02:00
parent 92b59eeae0
commit 9b7db179bc
9 changed files with 295 additions and 141 deletions

15
app/showDetails.tsx Normal file
View File

@@ -0,0 +1,15 @@
import React from "react";
import { View } from "react-native";
export default function ShowDetails() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "hsl(221, 39%, 12%)",
}}
></View>
);
}