buildTransformAndScrollbars abstract method

Widget buildTransformAndScrollbars(
  1. BuildContext context,
  2. Widget child
)

Gets called from the default build function with the result of buildChild as the child parameter.

This function is used to build the actual widget with the scrollbars and the transformation. If your child applies the transform itself, you can just return the child.

Implementation

Widget buildTransformAndScrollbars(BuildContext context, Widget child);