Replies: 1 comment 1 reply
-
Hey @qorinn! Could you tell me if you use Paper (Old Architecture) or Fabric (New Architecture)? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
<Animated.FlatList data={weightLogs} keyExtractor={(item) => item.$id} renderItem={({ item }) => <LogComponent item={item} listView={listView} />} estimatedItemSize={10} contentContainerStyle={{ paddingHorizontal: 6 }} itemLayoutAnimation={LinearTransition} ItemSeparatorComponent={() => ( <View className='p-1'></View> )} />
`const LogComponent = ({ item, listView }) => {
const [open, setOpen] = useState(false)
const [confirmDelete, setConfirmDelete] = useState(false)
}`
The elements are duplicating and rendering wrong, but only if I use Animated.View in delete confirmation, otherwise it works fine, it's just not that smooth.
20250413_115439000_iOS.MP4
Beta Was this translation helpful? Give feedback.
All reactions