This commit is contained in:
imeepos 2025-12-25 21:06:22 +08:00
parent 38d90e2161
commit 6e0da4f887
1 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,7 @@ import Animated, { Easing, useAnimatedStyle, useSharedValue, withRepeat, withTim
import { router } from 'expo-router'
import { IOS_UNIVERSAL_LINK } from '@/app.constants'
import { FlashList } from '@shopify/flash-list'
import { screenHeight, screenWidth } from '@/utils'
import { cn } from '@/utils/cn'
import { useAuth } from '@/hooks/core/use-auth'
@ -644,12 +645,11 @@ export default function Sync() {
<FilterSection activeTab={activeTab} onChange={setActiveTab} />
<FlatList
<FlashList
data={galleryItems}
renderItem={renderGridItem}
keyExtractor={(item) => item.id}
numColumns={3}
columnWrapperStyle={{ gap: 12 }}
contentContainerStyle={{ marginTop: 12, paddingBottom: 200 }}
showsVerticalScrollIndicator={false}
refreshControl={<RefreshControl refreshing={refreshing} onRefresh={handleRefresh} tintColor="#FFE500" colors={['#FFE500']} />}