mirror of
https://github.com/zhigang1992/react-native-super-grid.git
synced 2026-01-12 22:50:58 +08:00
Version 2.1.0
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user