import { View, StyleSheet, Dimensions } from 'react-native' import { Skeleton } from './skeleton' const { width: screenWidth, height: screenHeight } = Dimensions.get('window') const TAB_BAR_HEIGHT = 83 const videoHeight = screenHeight - TAB_BAR_HEIGHT export function VideoSkeleton() { return ( {/* 主视频区域骨架 */} {/* 左下角按钮骨架 */} {/* 右下角按钮骨架 */} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#090A0B', }, videoContainer: { width: screenWidth, backgroundColor: '#090A0B', position: 'relative', }, actionButtonLeft: { position: 'absolute', left: 12, bottom: 16, flexDirection: 'row', alignItems: 'center', gap: 4, paddingHorizontal: 6, paddingVertical: 8, }, actionButtonRight: { position: 'absolute', right: 13, bottom: 13, flexDirection: 'column', alignItems: 'center', gap: 4, }, })