Skip to content

Commit

Permalink
feat(android): listview add props : overScrollEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
gxq1989 authored and siguangli committed Feb 26, 2021
1 parent 48f006e commit 8378a0a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ public void setPreloadItemNumber(HippyListView view, int preloadItemNumber)
}
}

@HippyControllerProps(name = "overScrollEnabled", defaultType = HippyControllerProps.BOOLEAN, defaultBoolean = true)
public void setOverScrollEnabled(HippyListView view, boolean flag)
{
view.setOverScrollEnabled(flag);
}

@Override
public void dispatchFunction(HippyListView view, String functionName, HippyArray dataArray)
{
Expand Down

0 comments on commit 8378a0a

Please sign in to comment.