分离足球事件卡片

This commit is contained in:
xianyi
2026-01-14 14:32:59 +08:00
parent 98717b0716
commit d83ca038c7
6 changed files with 787 additions and 16 deletions

View File

@@ -1,6 +1,9 @@
import { BasketballScoreTable } from "@/components/match-detail/basketball/basketball-score-table"; import { BasketballScoreTable } from "@/components/match-detail/basketball/basketball-score-table";
import { FootballEvents } from "@/components/match-detail/football/football-events"; import { CardsCard } from "@/components/match-detail/football/cards-card";
import { FootballScoreTable } from "@/components/match-detail/football/football-score-table"; import { FootballScoreTable } from "@/components/match-detail/football/football-score-table";
import { GoalsCard } from "@/components/match-detail/football/goals-card";
import { LineupsCard } from "@/components/match-detail/football/lineups-card";
import { SubstitutesCard } from "@/components/match-detail/football/substitutes-card";
import { LeagueInfo } from "@/components/match-detail/league-info"; import { LeagueInfo } from "@/components/match-detail/league-info";
import { MatchInfoCard } from "@/components/match-detail/match-info-card"; import { MatchInfoCard } from "@/components/match-detail/match-info-card";
import { MatchTabs } from "@/components/match-detail/match-tabs"; import { MatchTabs } from "@/components/match-detail/match-tabs";
@@ -73,6 +76,9 @@ export default function MatchDetailScreen() {
const result = await fetchMatchDetail(id as string); const result = await fetchMatchDetail(id as string);
setData(result); setData(result);
console.log("首发阵容" , result.match.players?.away_team); console.log("首发阵容" , result.match.players?.away_team);
console.log("红黄牌", result.events);
} catch (err: any) { } catch (err: any) {
setError(err.message || t("detail.fetch_failed")); setError(err.message || t("detail.fetch_failed"));
@@ -107,12 +113,11 @@ export default function MatchDetailScreen() {
case "info": case "info":
// 根据 sportId 显示不同的详情组件 // 根据 sportId 显示不同的详情组件
if (sportId === 1) { if (sportId === 1) {
// 足球:显示 FootballScoreTable (半场/全场)MatchInfoCard 和 FootballEvents // 足球:显示 FootballScoreTable (半场/全场)MatchInfoCard
return ( return (
<> <>
<FootballScoreTable data={data} isDark={isDark} /> <FootballScoreTable data={data} isDark={isDark} />
<MatchInfoCard data={data} isDark={isDark} /> <MatchInfoCard data={data} isDark={isDark} />
<FootballEvents data={data} isDark={isDark} />
</> </>
); );
} else if (sportId === 2) { } else if (sportId === 2) {
@@ -129,18 +134,31 @@ export default function MatchDetailScreen() {
<> <>
<FootballScoreTable data={data} isDark={isDark} /> <FootballScoreTable data={data} isDark={isDark} />
<MatchInfoCard data={data} isDark={isDark} /> <MatchInfoCard data={data} isDark={isDark} />
<FootballEvents data={data} isDark={isDark} />
</> </>
); );
} }
case "stats": case "stats":
return ( // 统计数据:显示进球、红黄牌、换人、首发阵容(分开显示)
<View style={styles.emptyContent}> if (sportId === 1) {
<ThemedText style={styles.emptyText}> // 足球:分别显示各个卡片
{t("detail.empty_stats")} return (
</ThemedText> <>
</View> <GoalsCard data={data} isDark={isDark} />
); <CardsCard data={data} isDark={isDark} />
<SubstitutesCard data={data} isDark={isDark} />
<LineupsCard data={data} isDark={isDark} />
</>
);
} else {
// 其他运动暂时显示空状态
return (
<View style={styles.emptyContent}>
<ThemedText style={styles.emptyText}>
{t("detail.empty_stats")}
</ThemedText>
</View>
);
}
case "odds": case "odds":
return ( return (
<View style={styles.emptyContent}> <View style={styles.emptyContent}>

View File

@@ -0,0 +1,151 @@
import { ThemedText } from "@/components/themed-text";
import { CardEvent, MatchDetailData } from "@/types/api";
import React from "react";
import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";
interface CardsCardProps {
data: MatchDetailData;
isDark: boolean;
}
export function CardsCard({ data, isDark }: CardsCardProps) {
const { t } = useTranslation();
const bgColor = isDark ? "#1C1C1E" : "#FFF";
const borderColor = isDark ? "#2C2C2E" : "#EEE";
// events 可能在 data.events 或 match.events 中
const events = (data as any).events || (data.match as any).events;
if (!events || typeof events !== "object") {
return null;
}
// 处理数组格式的 events
let eventsObj = events;
if (Array.isArray(events) && events.length > 0) {
eventsObj = events[0];
}
const cards = eventsObj?.cards || [];
const filteredCards = cards.filter((card: CardEvent) => card.home_fault || card.away_fault);
if (filteredCards.length === 0) {
return null;
}
const renderCardEvent = (card: CardEvent, index: number) => {
const isHome = !!card.home_fault;
const cardType = card.card?.toLowerCase() || "";
const isRed = cardType.includes("red");
const isYellow = cardType.includes("yellow");
const cardColor = isRed ? "#F44336" : isYellow ? "#FFC107" : "#9E9E9E";
const playerName = card.home_fault || card.away_fault || "";
return (
<View key={`card-${index}`} style={[styles.eventRow, { borderBottomColor: borderColor }]}>
<View style={styles.eventTime}>
<ThemedText style={styles.timeText}>
{card.time ? `${card.time}'` : ""}
</ThemedText>
</View>
<View style={[styles.eventContent, isHome ? styles.homeEvent : styles.awayEvent]}>
<View style={[styles.cardIcon, { backgroundColor: cardColor }]} />
<ThemedText style={styles.eventText} numberOfLines={1}>
{playerName}
</ThemedText>
{card.card && (
<View style={[styles.cardBadge, { backgroundColor: cardColor + "20" }]}>
<ThemedText style={[styles.cardTypeText, { color: cardColor }]}>
{isRed ? t("detail.events.red_card") : isYellow ? t("detail.events.yellow_card") : card.card}
</ThemedText>
</View>
)}
</View>
</View>
);
};
return (
<View style={[styles.container, { backgroundColor: bgColor, borderColor }]}>
<ThemedText style={styles.title}>
{t("detail.events.cards")}
</ThemedText>
<View style={styles.content}>
{filteredCards.map((card: CardEvent, index: number) => renderCardEvent(card, index))}
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
margin: 16,
marginTop: 0,
borderRadius: 12,
padding: 16,
borderWidth: 1,
elevation: 2,
shadowColor: "#000",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
title: {
fontSize: 14,
fontWeight: "600",
marginBottom: 12,
opacity: 0.7,
},
content: {
gap: 0,
},
eventRow: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 8,
borderBottomWidth: StyleSheet.hairlineWidth,
},
eventTime: {
width: 40,
alignItems: "center",
},
timeText: {
fontSize: 12,
fontWeight: "500",
opacity: 0.6,
},
eventContent: {
flex: 1,
flexDirection: "row",
alignItems: "center",
gap: 8,
paddingLeft: 12,
},
homeEvent: {
justifyContent: "flex-start",
},
awayEvent: {
justifyContent: "flex-end",
flexDirection: "row-reverse",
},
eventText: {
fontSize: 13,
fontWeight: "500",
flex: 1,
},
cardIcon: {
width: 12,
height: 16,
borderRadius: 2,
},
cardTypeText: {
fontSize: 10,
fontWeight: "600",
textTransform: "uppercase",
},
cardBadge: {
paddingHorizontal: 6,
paddingVertical: 2,
borderRadius: 4,
},
});

View File

@@ -124,11 +124,85 @@ export function FootballEvents({ data, isDark }: FootballEventsProps) {
}; };
const renderSubstituteEvent = (sub: SubstituteEvent, index: number) => { const renderSubstituteEvent = (sub: SubstituteEvent, index: number) => {
const isHome = !!sub.home_scorer || !!sub.home_assist; // 辅助函数:从字段中提取字符串值(可能是字符串、数组或对象)
// 换人数据可能包含home_scorer (换入), away_scorer (换出) 或相反 const extractPlayerName = (value: any): string => {
// 也可能有单独的字段如 home_assist, away_assist 等 if (!value) return "";
const playerIn = sub.home_scorer || sub.home_assist || sub.away_scorer || "";
const playerOut = sub.away_scorer || sub.away_assist || sub.home_scorer_out || sub.away_scorer_out || ""; // 如果是字符串,直接返回
if (typeof value === "string") return value;
// 如果是数组,取第一个元素
if (Array.isArray(value)) {
if (value.length === 0) return "";
const firstItem = value[0];
// 如果数组元素是对象,提取 in 或 out
if (typeof firstItem === "object" && firstItem !== null) {
return String(firstItem.in || firstItem.out || firstItem.player || "");
}
return String(firstItem);
}
// 如果是对象,提取 in 或 out 字段
if (typeof value === "object" && value !== null) {
return String(value.in || value.out || value.player || "");
}
return String(value);
};
// 提取换入和换出球员名称
let playerIn = "";
let playerOut = "";
let isHome = false;
// 优先处理 home_scorer可能是对象 {in, out} 或数组)
const homeScorerData = (sub as any).home_scorer;
if (homeScorerData) {
isHome = true;
if (typeof homeScorerData === "object" && !Array.isArray(homeScorerData) && "in" in homeScorerData) {
// 对象格式:{in: "球员名", out: "球员名", in_id, out_id}
playerIn = String(homeScorerData.in || "");
playerOut = String(homeScorerData.out || "");
} else if (Array.isArray(homeScorerData) && homeScorerData.length > 0) {
// 数组格式:取第一个元素
const firstItem = homeScorerData[0];
if (typeof firstItem === "object" && firstItem !== null && "in" in firstItem) {
playerIn = String(firstItem.in || "");
playerOut = String(firstItem.out || "");
} else {
playerIn = extractPlayerName(firstItem);
}
} else {
playerIn = extractPlayerName(homeScorerData);
}
}
// 处理 away_scorer可能是对象 {in, out} 或数组)
const awayScorerData = (sub as any).away_scorer;
if (awayScorerData && !playerIn) {
isHome = false;
if (typeof awayScorerData === "object" && !Array.isArray(awayScorerData) && "in" in awayScorerData) {
// 对象格式:{in: "球员名", out: "球员名", in_id, out_id}
playerIn = String(awayScorerData.in || "");
playerOut = String(awayScorerData.out || "");
} else if (Array.isArray(awayScorerData) && awayScorerData.length > 0) {
// 数组格式:取第一个元素
const firstItem = awayScorerData[0];
if (typeof firstItem === "object" && firstItem !== null && "in" in firstItem) {
playerIn = String(firstItem.in || "");
playerOut = String(firstItem.out || "");
} else {
playerIn = extractPlayerName(firstItem);
}
} else {
playerIn = extractPlayerName(awayScorerData);
}
}
// 如果还没有提取到换出球员,尝试从其他字段获取
if (!playerOut) {
playerOut = extractPlayerName(sub.home_scorer_out || sub.away_scorer_out || sub.home_assist || sub.away_assist);
}
return ( return (
<View key={`sub-${index}`} style={[styles.eventRow, { borderBottomColor: borderColor }]}> <View key={`sub-${index}`} style={[styles.eventRow, { borderBottomColor: borderColor }]}>

View File

@@ -0,0 +1,164 @@
import { ThemedText } from "@/components/themed-text";
import { IconSymbol } from "@/components/ui/icon-symbol";
import { GoalEvent, MatchDetailData } from "@/types/api";
import React from "react";
import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";
interface GoalsCardProps {
data: MatchDetailData;
isDark: boolean;
}
export function GoalsCard({ data, isDark }: GoalsCardProps) {
const { t } = useTranslation();
const bgColor = isDark ? "#1C1C1E" : "#FFF";
const borderColor = isDark ? "#2C2C2E" : "#EEE";
// events 可能在 data.events 或 match.events 中
const events = (data as any).events || (data.match as any).events;
if (!events || typeof events !== "object") {
return null;
}
// 处理数组格式的 events
let eventsObj = events;
if (Array.isArray(events) && events.length > 0) {
eventsObj = events[0];
}
const goalscorers = eventsObj?.goalscorers || [];
const filteredGoals = goalscorers.filter((goal: GoalEvent) => goal.home_scorer || goal.away_scorer);
if (filteredGoals.length === 0) {
return null;
}
const renderGoalEvent = (goal: GoalEvent, index: number) => {
const isHome = !!goal.home_scorer;
const scorerRaw = goal.home_scorer || goal.away_scorer || "";
const isPenalty = scorerRaw.includes("(pen.)");
const playerName = scorerRaw.replace("(pen.)", "").trim();
return (
<View key={index} style={[styles.eventRow, { borderBottomColor: borderColor }]}>
<View style={styles.eventTime}>
<ThemedText style={styles.timeText}>
{goal.time ? `${goal.time}'` : ""}
</ThemedText>
</View>
<View style={[styles.eventContent, isHome ? styles.homeEvent : styles.awayEvent]}>
<IconSymbol name="football" size={16} color={isDark ? "#4CAF50" : "#2E7D32"} />
<View style={styles.goalContent}>
{playerName && (
<ThemedText style={styles.eventText} numberOfLines={1}>
{playerName}
</ThemedText>
)}
{isPenalty && (
<View style={styles.penaltyBadge}>
<ThemedText style={styles.penaltyText}>P</ThemedText>
</View>
)}
</View>
{goal.score && (
<ThemedText style={styles.scoreText}>{goal.score}</ThemedText>
)}
</View>
</View>
);
};
return (
<View style={[styles.container, { backgroundColor: bgColor, borderColor }]}>
<ThemedText style={styles.title}>
{t("detail.events.goals")}
</ThemedText>
<View style={styles.content}>
{filteredGoals.map((goal: GoalEvent, index: number) => renderGoalEvent(goal, index))}
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
margin: 16,
marginTop: 16,
borderRadius: 12,
padding: 16,
borderWidth: 1,
elevation: 2,
shadowColor: "#000",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
title: {
fontSize: 14,
fontWeight: "600",
marginBottom: 12,
opacity: 0.7,
},
content: {
gap: 0,
},
eventRow: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 8,
borderBottomWidth: StyleSheet.hairlineWidth,
},
eventTime: {
width: 40,
alignItems: "center",
},
timeText: {
fontSize: 12,
fontWeight: "500",
opacity: 0.6,
},
eventContent: {
flex: 1,
flexDirection: "row",
alignItems: "center",
gap: 8,
paddingLeft: 12,
},
homeEvent: {
justifyContent: "flex-start",
},
awayEvent: {
justifyContent: "flex-end",
flexDirection: "row-reverse",
},
eventText: {
fontSize: 13,
fontWeight: "500",
flex: 1,
},
scoreText: {
fontSize: 12,
fontWeight: "600",
opacity: 0.7,
},
goalContent: {
flex: 1,
flexDirection: "row",
alignItems: "center",
gap: 6,
},
penaltyBadge: {
width: 18,
height: 18,
borderRadius: 9,
backgroundColor: "#FF9800",
alignItems: "center",
justifyContent: "center",
},
penaltyText: {
fontSize: 10,
fontWeight: "700",
color: "#FFF",
},
});

View File

@@ -0,0 +1,142 @@
import { ThemedText } from "@/components/themed-text";
import { MatchDetailData, Player } from "@/types/api";
import React from "react";
import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";
interface LineupsCardProps {
data: MatchDetailData;
isDark: boolean;
}
export function LineupsCard({ data, isDark }: LineupsCardProps) {
const { t } = useTranslation();
const { match } = data;
const bgColor = isDark ? "#1C1C1E" : "#FFF";
const borderColor = isDark ? "#2C2C2E" : "#EEE";
const players = (match as any).players || null;
if (!players || (!players.home_team && !players.away_team)) {
return null;
}
const hasLineups =
(players.home_team && Array.isArray(players.home_team) && players.home_team.length > 0) ||
(players.away_team && Array.isArray(players.away_team) && players.away_team.length > 0);
if (!hasLineups) {
return null;
}
return (
<View style={[styles.container, { backgroundColor: bgColor, borderColor }]}>
<ThemedText style={styles.title}>
{t("detail.events.lineups")}
</ThemedText>
<View style={styles.content}>
{players.home_team && Array.isArray(players.home_team) && players.home_team.length > 0 && (
<View style={styles.teamLineup}>
<ThemedText style={styles.teamName}>
{match.eventHomeTeam}
</ThemedText>
{players.home_team.slice(0, 11).map((player: Player, idx: number) => (
<View key={idx} style={styles.playerRow}>
<ThemedText style={styles.playerNumber}>
{player.player_number || player.number || idx + 1}
</ThemedText>
<ThemedText style={styles.playerName} numberOfLines={1}>
{player.player_name || player.player || player.name || ""}
</ThemedText>
{player.position && (
<ThemedText style={styles.playerPosition}>
{player.position}
</ThemedText>
)}
</View>
))}
</View>
)}
{players.away_team && Array.isArray(players.away_team) && players.away_team.length > 0 && (
<View style={[styles.teamLineup, { marginTop: 16 }]}>
<ThemedText style={styles.teamName}>
{match.eventAwayTeam}
</ThemedText>
{players.away_team.slice(0, 11).map((player: Player, idx: number) => (
<View key={idx} style={styles.playerRow}>
<ThemedText style={styles.playerNumber}>
{player.player_number || player.number || idx + 1}
</ThemedText>
<ThemedText style={styles.playerName} numberOfLines={1}>
{player.player_name || player.player || player.name || ""}
</ThemedText>
{player.position && (
<ThemedText style={styles.playerPosition}>
{player.position}
</ThemedText>
)}
</View>
))}
</View>
)}
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
margin: 16,
marginTop: 0,
borderRadius: 12,
padding: 16,
borderWidth: 1,
elevation: 2,
shadowColor: "#000",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
title: {
fontSize: 14,
fontWeight: "600",
marginBottom: 12,
opacity: 0.7,
},
content: {
gap: 0,
},
teamLineup: {
marginTop: 8,
},
teamName: {
fontSize: 13,
fontWeight: "600",
marginBottom: 8,
opacity: 0.8,
},
playerRow: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 4,
gap: 8,
},
playerNumber: {
fontSize: 12,
fontWeight: "600",
width: 24,
textAlign: "center",
opacity: 0.6,
},
playerName: {
fontSize: 13,
fontWeight: "500",
flex: 1,
},
playerPosition: {
fontSize: 11,
fontWeight: "500",
opacity: 0.5,
textTransform: "uppercase",
},
});

View File

@@ -0,0 +1,222 @@
import { ThemedText } from "@/components/themed-text";
import { IconSymbol } from "@/components/ui/icon-symbol";
import { MatchDetailData, SubstituteEvent } from "@/types/api";
import React from "react";
import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";
interface SubstitutesCardProps {
data: MatchDetailData;
isDark: boolean;
}
export function SubstitutesCard({ data, isDark }: SubstitutesCardProps) {
const { t } = useTranslation();
const bgColor = isDark ? "#1C1C1E" : "#FFF";
const borderColor = isDark ? "#2C2C2E" : "#EEE";
// events 可能在 data.events 或 match.events 中
const events = (data as any).events || (data.match as any).events;
if (!events || typeof events !== "object") {
return null;
}
// 处理数组格式的 events
let eventsObj = events;
if (Array.isArray(events) && events.length > 0) {
eventsObj = events[0];
}
const substitutes = eventsObj?.substitutes || [];
const filteredSubstitutes = substitutes.filter(
(sub: SubstituteEvent) => sub.home_scorer || sub.away_scorer || sub.home_assist || sub.away_assist
);
if (filteredSubstitutes.length === 0) {
return null;
}
const extractPlayerName = (value: any): string => {
if (!value) return "";
if (typeof value === "string") return value;
if (Array.isArray(value)) {
if (value.length === 0) return "";
const firstItem = value[0];
if (typeof firstItem === "object" && firstItem !== null) {
return String(firstItem.in || firstItem.out || firstItem.player || "");
}
return String(firstItem);
}
if (typeof value === "object" && value !== null) {
return String(value.in || value.out || value.player || "");
}
return String(value);
};
const renderSubstituteEvent = (sub: SubstituteEvent, index: number) => {
let playerIn = "";
let playerOut = "";
let isHome = false;
const homeScorerData = (sub as any).home_scorer;
if (homeScorerData) {
isHome = true;
if (typeof homeScorerData === "object" && !Array.isArray(homeScorerData) && "in" in homeScorerData) {
playerIn = String(homeScorerData.in || "");
playerOut = String(homeScorerData.out || "");
} else if (Array.isArray(homeScorerData) && homeScorerData.length > 0) {
const firstItem = homeScorerData[0];
if (typeof firstItem === "object" && firstItem !== null && "in" in firstItem) {
playerIn = String(firstItem.in || "");
playerOut = String(firstItem.out || "");
} else {
playerIn = extractPlayerName(firstItem);
}
} else {
playerIn = extractPlayerName(homeScorerData);
}
}
const awayScorerData = (sub as any).away_scorer;
if (awayScorerData && !playerIn) {
isHome = false;
if (typeof awayScorerData === "object" && !Array.isArray(awayScorerData) && "in" in awayScorerData) {
playerIn = String(awayScorerData.in || "");
playerOut = String(awayScorerData.out || "");
} else if (Array.isArray(awayScorerData) && awayScorerData.length > 0) {
const firstItem = awayScorerData[0];
if (typeof firstItem === "object" && firstItem !== null && "in" in firstItem) {
playerIn = String(firstItem.in || "");
playerOut = String(firstItem.out || "");
} else {
playerIn = extractPlayerName(firstItem);
}
} else {
playerIn = extractPlayerName(awayScorerData);
}
}
if (!playerOut) {
playerOut = extractPlayerName(sub.home_scorer_out || sub.away_scorer_out || sub.home_assist || sub.away_assist);
}
return (
<View key={`sub-${index}`} style={[styles.eventRow, { borderBottomColor: borderColor }]}>
<View style={styles.eventTime}>
<ThemedText style={styles.timeText}>
{sub.time ? `${sub.time}'` : ""}
</ThemedText>
</View>
<View style={[styles.eventContent, isHome ? styles.homeEvent : styles.awayEvent]}>
<IconSymbol name="swap-horizontal" size={16} color={isDark ? "#2196F3" : "#1976D2"} />
<View style={styles.substituteContent}>
{playerOut ? (
<>
<ThemedText style={[styles.substituteIn, { color: isDark ? "#4CAF50" : "#2E7D32" }]} numberOfLines={1}>
{playerIn}
</ThemedText>
<ThemedText style={styles.substituteArrow}></ThemedText>
<ThemedText style={styles.substituteOut} numberOfLines={1}>
{playerOut}
</ThemedText>
</>
) : (
<ThemedText style={styles.eventText} numberOfLines={1}>
{playerIn}
</ThemedText>
)}
</View>
</View>
</View>
);
};
return (
<View style={[styles.container, { backgroundColor: bgColor, borderColor }]}>
<ThemedText style={styles.title}>
{t("detail.events.substitutes")}
</ThemedText>
<View style={styles.content}>
{filteredSubstitutes.map((sub: SubstituteEvent, index: number) => renderSubstituteEvent(sub, index))}
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
margin: 16,
marginTop: 0,
borderRadius: 12,
padding: 16,
borderWidth: 1,
elevation: 2,
shadowColor: "#000",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
title: {
fontSize: 14,
fontWeight: "600",
marginBottom: 12,
opacity: 0.7,
},
content: {
gap: 0,
},
eventRow: {
flexDirection: "row",
alignItems: "center",
paddingVertical: 8,
borderBottomWidth: StyleSheet.hairlineWidth,
},
eventTime: {
width: 40,
alignItems: "center",
},
timeText: {
fontSize: 12,
fontWeight: "500",
opacity: 0.6,
},
eventContent: {
flex: 1,
flexDirection: "row",
alignItems: "center",
gap: 8,
paddingLeft: 12,
},
homeEvent: {
justifyContent: "flex-start",
},
awayEvent: {
justifyContent: "flex-end",
flexDirection: "row-reverse",
},
eventText: {
fontSize: 13,
fontWeight: "500",
flex: 1,
},
substituteContent: {
flex: 1,
flexDirection: "row",
alignItems: "center",
gap: 6,
},
substituteIn: {
fontSize: 13,
fontWeight: "500",
},
substituteArrow: {
fontSize: 12,
opacity: 0.5,
},
substituteOut: {
fontSize: 13,
fontWeight: "500",
opacity: 0.6,
textDecorationLine: "line-through",
},
});