:api added seasonApi to fetch seasons for a show

This commit is contained in:
Cron1cle
2025-10-07 16:14:11 +02:00
parent 9da89e6b90
commit de2778d6db
11 changed files with 462 additions and 156 deletions

View File

@@ -49,11 +49,10 @@ const styles = StyleSheet.create({
marginTop: 2,
},
performedShowsSection: {
marginTop: 0,
width: "100%",
height: "100%",
paddingHorizontal: 20,
paddingVertical: 10,
height: 375,
paddingLeft: 15,
paddingBottom: 20,
backgroundColor: "hsl(221, 39%, 0%)",
},
performedShowsTitle: {
@@ -69,6 +68,27 @@ const styles = StyleSheet.create({
borderRadius: 10,
marginRight: 15,
},
showImage: {
width: "100%",
height: "100%",
borderRadius: 10,
},
showLabel: {
color: "white",
fontSize: 14,
fontWeight: "600",
textAlign: "center",
},
contentContainer: {
flex: 1,
padding: 10,
alignItems: "center",
},
itemContainer: {
padding: 6,
margin: 6,
backgroundColor: "#eee",
},
});
export default styles;

View File

@@ -68,6 +68,7 @@ const styles = StyleSheet.create({
width: 110,
backgroundColor: "hsl(336, 79%, 63%)",
borderRadius: 10,
marginTop: 30,
},
participantSection: {
flexDirection: "row",