renderScroll method

dynamic renderScroll()

Implementation

renderScroll() {
  return CustomScrollView(
      // controller: controller,
      scrollDirection: getScrollDirection(),
      shrinkWrap: true,
      slivers: [
        new SliverList(delegate: new SliverChildListDelegate(this.children))
      ]);
}