Skip to content

Commit b969632

Browse files
committed
small fixes
1 parent 6a40594 commit b969632

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ render() {
2020
const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
2121
return (
2222
<SwipeListView
23-
dataSource={this.ds.cloneWithRows(dataSource)}
23+
dataSource={ds.cloneWithRows(dataSource)}
2424
renderRow={ data => (
2525
<View style={styles.rowFront}>
2626
<Text>I am {data} in a SwipeListView</Text>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"android",
2121
"listview",
2222
"swipe",
23-
"swipeable",
23+
"swipeable"
2424
],
2525
"peerDependencies": {
2626
"react": "^0.14.8",

0 commit comments

Comments
 (0)