import { View, StyleSheet } from 'react-native' import { Skeleton } from './skeleton' export function ChannelsSkeleton() { return ( {/* 标题栏骨架 */} {/* 频道选择区域骨架 */} {[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13].map((item) => ( ))} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#0A0A0A', }, header: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', paddingHorizontal: 16, paddingTop: 27, paddingBottom: 12, }, channelsSection: { paddingHorizontal: 12, paddingBottom: 12, }, channelsGrid: { flexDirection: 'row', flexWrap: 'wrap', gap: 8, }, channelButton: { marginBottom: 0, }, })