diff --git a/README.md b/README.md index a768a67..ee536df 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This component renders a Grid View that adapts itself to various screen resoluti Instead of passing an itemPerRow argument, you pass ```itemDimension``` and each item will be rendered with a dimension size equal to or more than (to fill the screen) the given dimension. -Internally, this component uses the native [ListView](https://facebook.github.io/react-native/docs/listview.html). +Internally, this component uses the native [FlatList](https://facebook.github.io/react-native/docs/flatlist.html). ### Installing @@ -142,6 +142,11 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md ## Changelog +### [2.1.0] - 2018-03-17 +#### Added +- Use FlastList instead of ListView +- Fix spacing issues + ### [2.0.2] - 2018-01-11 #### Added - Allow dynamic update of itemDimension diff --git a/package.json b/package.json index faff72e..0398ea1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-super-grid", - "version": "2.0.2", + "version": "2.1.0", "description": "Responsive Grid View for React Native", "main": "index.js", "types": "index.d.ts", @@ -21,9 +21,11 @@ "responsive", "super", "grid", - "view" + "view", + "flatlist", + "listview" ], - "author": "Saleel", + "author": "saleel", "license": "MIT", "devDependencies": { "eslint": "^3.19.0",