版本1.0

This commit is contained in:
Developer
2026-03-19 21:53:08 +08:00
parent a3acd40ee2
commit 5ec4c5a6be
6 changed files with 41 additions and 166 deletions

View File

@@ -301,11 +301,11 @@ export default function HomeScreen() {
ref={hotListRef as any}
style={styles.listContainer}
data={rows}
keyExtractor={(row: any) =>
keyExtractor={(row: any, index: number) =>
row.type === "big"
? `big-${row.item.bvid}`
: row.type === "live"
? `live-${row.left.roomid}-${row.right?.roomid ?? "empty"}`
? `live-${index}-${row.left.roomid}-${row.right?.roomid ?? "empty"}`
: `pair-${row.left.bvid}-${row.right?.bvid ?? "empty"}`
}
contentContainerStyle={{