import { View, StyleSheet, Dimensions } from 'react-native' import { Skeleton } from './skeleton' const { width: screenWidth } = Dimensions.get('window') export function GenerationRecordSkeleton() { return ( {/* 顶部导航栏骨架 */} {/* AI 视频标签骨架 */} {/* 原图标签骨架 */} {/* 主图片骨架 */} {/* 时长骨架 */} {/* 底部操作按钮骨架 */} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#090A0B', }, header: { flexDirection: 'row', alignItems: 'center', paddingHorizontal: 12, paddingTop: 16, paddingBottom: 20, }, headerSpacer: { width: 22, }, categorySection: { flexDirection: 'row', alignItems: 'center', paddingHorizontal: 16, marginBottom: 8, gap: 4, }, originalImageSection: { paddingHorizontal: 16, marginBottom: 8, }, imageContainer: { marginHorizontal: 12, marginBottom: 14, }, durationText: { paddingLeft: 28, marginBottom: 22, }, actionButtons: { flexDirection: 'row', alignItems: 'center', paddingHorizontal: 12, gap: 8, }, deleteButton: { marginLeft: 'auto', }, })