onCreateListView method

UIListView onCreateListView()

Implementation

UIListView onCreateListView() {
  listView = UIListView(
    physics: physics,
    scrollDirection: scrollDirection,
    edgeInsets: edgeInsets,
    sections: sections,
    needScrollerListener: needScrollerListener,
    didScrollClosure: (offsety) {
      onDidScroll(offsety);
    },
  );
  return listView!;
}