Version 2.1.0

This commit is contained in:
Saleel S
2018-03-17 12:55:31 +04:00
parent 6c7d9cb470
commit c46f574ea2
2 changed files with 11 additions and 4 deletions

View File

@@ -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

View File

@@ -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",