We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b552885 commit b6ebea9Copy full SHA for b6ebea9
README.md
@@ -56,7 +56,10 @@ The application under ./SwipeListExample will produce the above example. To run
56
```javascript
57
import { SwipeListView } from 'react-native-swipe-list-view';
58
59
-//... note: your data array objects MUST contain a key property or you must pass a keyExtractor to the SwipeListView to ensure proper functionality
+//... note: your data array objects MUST contain a key property
60
+// or you must pass a keyExtractor to the SwipeListView to ensure proper functionality
61
+// see: https://reactnative.dev/docs/flatlist#keyextractor
62
+
63
this.state.listViewData = Array(20)
64
.fill("")
65
.map((_, i) => ({ key: `${i}`, text: `item #${i}` }));
0 commit comments