import { View, StyleSheet } from 'react-native' import { Skeleton } from './skeleton' export function GenerateVideoSkeleton() { return ( {/* 顶部导航栏骨架 */} {/* 标题区域骨架 */} {/* 上传容器骨架 */} {/* 上传参考图按钮骨架 */} {/* 描述输入区域骨架 */} {/* 生成按钮骨架 */} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#090A0B', }, header: { flexDirection: 'row', alignItems: 'center', paddingTop: 17, paddingHorizontal: 12, paddingBottom: 20, }, content: { paddingHorizontal: 12, paddingTop: 16, backgroundColor: '#1C1E20', borderTopLeftRadius: 20, borderTopRightRadius: 20, gap: 8, }, titleSection: { paddingHorizontal: 4, marginBottom: 11, gap: 5, }, title: { marginBottom: 5, }, subtitle: { marginTop: 0, }, uploadContainer: { marginBottom: 0, }, uploadButton: { marginBottom: 0, }, descriptionInput: { marginBottom: 0, }, generateButton: { marginTop: 12, marginBottom: 10, }, })