ffBody method

  1. @override
Widget? ffBody(
  1. BuildContext context
)
override

body

Implementation

@override
Widget? ffBody(BuildContext context) {
  Widget? head = ffHeadSliver(context);

  return CustomScrollView(
    controller: scrollController,
    physics: physics,
    slivers: [
      if (head != null) head,
      SliverList(
        delegate: SliverChildBuilderDelegate(
              (BuildContext ctx, int index) {
            return ffItem(ctx, index);
          },
          childCount: ffItemCount(),
        ),
      )
    ],
  );
}