-
Code refactors.
-
Added support for
CustomScrollView
with the addition ofInViewNotifierCustomScrollView
. -
InViewNotifierList
now uses abuilder
function to build it's children. This is replaced with previously usedchildren
property. -
Added
InViewNotifierWidget
which gets notified if it is currently inside the viewport conditionprovided by the
InViewPortCondition
condition. Checkout out the example for usage. -
No longer need to add widget's context to
InViewState
and useAnimatedBuilder
to get notified if the widget is in-view.
- Fixed fast scroll bugs.
- Updated use of
ancestorInheritedElementForWidgetOfExactType
(depricated) withgetElementForInheritedWidgetOfExactType
. - Added more properties to list like
reverse
,shrinkWrap
.
Added two extra properties padding
and physics
.
A Flutter package that builds a ListView and notifies when the widgets are on screen within a provided area.
Breaking- Fixed the typo for the property name from srollDirection
to scrollDirection
.
Before(v0.0.1):
InViewNotifierList(
srollDirection: Axis.vertical,
)
After(v0.0.2):
InViewNotifierList(
scrollDirection: Axis.vertical,
)
`