ScrollableContent constructor

const ScrollableContent({
  1. Key? key,
  2. Widget? footer,
  3. Widget? header,
  4. bool? primary,
  5. ScrollController? controller,
  6. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  8. List<Widget> children = const <Widget>[],
  9. List<Widget> slivers = const [],
  10. Color? backgroundColor,
  11. bool enableFixedButton = false,
})

Implementation

const ScrollableContent(
    {super.key,
    this.footer,
    this.header,
    this.primary,
    this.controller,
    this.mainAxisAlignment = MainAxisAlignment.start,
    this.crossAxisAlignment = CrossAxisAlignment.start,
    this.children = const <Widget>[],
    this.slivers = const [],
    this.backgroundColor,
    this.enableFixedButton = false});