uiListView method

Widget uiListView({
  1. required List<Widget> children,
  2. Key? key,
  3. Clip clipBehavior = Clip.hardEdge,
  4. EdgeInsetsGeometry? padding,
  5. bool? primary,
  6. bool reverse = false,
  7. Axis scrollDirection = Axis.vertical,
  8. bool shrinkWrap = false,
})

Provides a list view of widgets with automatic scrolling that can be set for vertical (default) or horizontal.

Implementation

Widget uiListView({
  required List<Widget> children,
  Key? key,
  Clip clipBehavior = Clip.hardEdge,
  EdgeInsetsGeometry? padding,
  bool? primary,
  bool reverse = false,
  Axis scrollDirection = Axis.vertical,
  bool shrinkWrap = false,
}) {
  return ListView(
    key: key,
    clipBehavior: clipBehavior,
    padding: padding,
    primary: primary,
    reverse: reverse,
    scrollDirection: scrollDirection,
    shrinkWrap: shrinkWrap,
    children: children,
  );
}