Releases: iNerdStack/react-native-flexible-grid
Releases · iNerdStack/react-native-flexible-grid
v0.2.3
What's Changed
- Added support for RTL arrangement in ResponsiveGrid by @forabi in #51
- Updated documentation for RTL Support @iNerdStack
New Contributors
Full Changelog: v0.2.2...v0.2.3
0.2.2
What's Changed
- implemented autoAdjustItemWidth for FlexGrid & ResponsiveGrid by @iNerdStack in #42
- exported types for FlexGrid & ResponsiveGrid components
- added prop documentation for autoAdjustItemWidth in FlexGrid & ResponsiveGrid
- minor bug fixes
Full Changelog: v0.1.8...v0.2.2
0.1.8
What's New
- Added
HeaderComponent
andFooterComponent
props acrossFlexGrid
andResponsiveGrid
for enhanced layout customization. - New example usages added in the example folder for implementing header and footer components.
Minor Changes
- Minor source code refactor for better readability.
- Updated CONTRIBUTION.md with better description and details on the project and how to contribute.
0.1.7
What's New
- Introduced a stable release, enhancing overall stability and performance.
- Added
keyExtractor
functionality for more efficient item rendering and updates. - Introduced
onEndReached
andonThreshold
logic toFlexGrid
andResponsiveGrid
, allowing callback function for loading more data as the user scrolls. - Refined documentation for both
FlexGrid
andResponsiveGrid
, including clear guidelines forkeyExtractor
andonEndReached
logic.
Breaking Changes
- The
renderItem
function for bothFlexGrid
andResponsiveGrid
components has been updated to use destructured parameters. The previous function(item, index) => void
has been updated to({item, index}) => void
.
This update is aimed at improving code readability and consistency with common React patterns.
0.1.4
What's New
- Introduced a stable release, enhancing overall stability and performance.
- Refined documentation for both
FlexGrid
andResponsiveGrid
. - New customization options for
FlexGrid
andResponsiveGrid
. - Improved responsive design capabilities across different devices and screen sizes.
- Optimized internal algorithms for both
FlexGrid
andResponsiveGrid
.
Fixes
- Enhancing performance and responsiveness, especially for large datasets.