We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should just work fine, as it works on web/ios.
When i begin to drag an item, it instantly throw the error below/crashses the application.
Here is the Expo Snack: https://snack.expo.dev/@abdulon3/sortablelist-android-bug?platform=web
import { Pressable } from 'react-native'; import { SortableList, Text } from 'react-native-ui-lib'; <SortableList flexMigration data={[ {id: '1', title: 'A'}, {id: '2', title: 'B'}, {id: '3', title: 'C'}, {id: '4', title: 'D'}, {id: '5', title: 'E'}, {id: '6', title: 'F'}, {id: '7', title: 'G'}, {id: '8', title: 'H'}, ]} onOrderChange={(info) => {console.log('order changed', info)}} renderItem={({ item }) => ( <Pressable style={{ backgroundColor: 'orange', padding: 16, marginBottom: 5}}> <Text>{item.title}</Text> </Pressable> )} />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Related to
Steps to reproduce
Expected behavior
It should just work fine, as it works on web/ios.
Actual behavior
When i begin to drag an item, it instantly throw the error below/crashses the application.
More Info
Here is the Expo Snack:
https://snack.expo.dev/@abdulon3/sortablelist-android-bug?platform=web
Code snippet
Screenshots/Video
Environment
Affected platforms
The text was updated successfully, but these errors were encountered: