You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the VeilRecyclerFrameView component from the AndroidVeil library does not support the nestedScrollingEnabled attribute. This limitation poses challenges when attempting to use the view in scenarios that involve nested scrolling, such as embedding it inside a NestedScrollView.
Expected Behavior:
When setting nestedScrollingEnabled to true or false on a VeilRecyclerFrameView:
The component should respect this attribute and support nested scrolling behavior accordingly.
This would allow smooth scrolling interactions when nested within parent scrollable views.
Actual Behavior:
The nestedScrollingEnabled attribute has no effect on VeilRecyclerFrameView.
Proposed Solution :
Add support for the nestedScrollingEnabled attribute within the VeilRecyclerFrameView component by implementing the necessary NestedScrollingChild interfaces or delegating scrolling behavior to an underlying RecyclerView with support for nested scrolling.
The text was updated successfully, but these errors were encountered:
Currently, the
VeilRecyclerFrameView
component from the AndroidVeil library does not support the nestedScrollingEnabled attribute. This limitation poses challenges when attempting to use the view in scenarios that involve nested scrolling, such as embedding it inside aNestedScrollView
.Expected Behavior:
When setting
nestedScrollingEnabled
totrue
orfalse
on aVeilRecyclerFrameView
:Actual Behavior:
The nestedScrollingEnabled attribute has no effect on VeilRecyclerFrameView.
Proposed Solution :
Add support for the
nestedScrollingEnabled
attribute within theVeilRecyclerFrameView
component by implementing the necessaryNestedScrollingChild
interfaces or delegating scrolling behavior to an underlyingRecyclerView
with support for nested scrolling.The text was updated successfully, but these errors were encountered: