import { View, StyleSheet, Dimensions } from 'react-native' import { Skeleton } from './skeleton' const { width: screenWidth } = Dimensions.get('window') const horizontalPadding = 8 * 2 const cardGap = 5 const cardWidth = (screenWidth - horizontalPadding - cardGap) / 2 export function SearchResultsSkeleton() { return ( {[1, 2, 3, 4, 5, 6, 7, 8, 9].map((item, index) => ( ))} ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#090A0B', }, gridContainer: { flexDirection: 'row', flexWrap: 'wrap', paddingHorizontal: 8, justifyContent: 'space-between', }, card: { marginBottom: 12, }, cardLeft: { marginRight: 0, }, cardRight: { marginLeft: 0, }, })