当列表项包含 Swipeable 时,FlatList 渲染速度较慢
作者: davidcarboni创建于 2025年1月17日更新于 2025年7月9日
标签Platform: AndroidPlatform: iOSRepro provided
import { memo, ReactElement, useCallback } from 'react'; import { StyleSheet, View, FlatList, Pressable, Text } from 'react-native'; import { Image } from 'expo-image'; import Swipeable from 'react-native-gesture-handler/ReanimatedSwipeable';
const deleteIcon = require('../assets/icons/trash.svg');
export interface Client { id: string, firstName: string, lastName?: string, }
interface …
内容来源: software-mansion/react-native-gesture-handler