CustomSliverAppBar constructor

const CustomSliverAppBar({
  1. Key? key,
  2. Widget? title,
  3. List<Widget> subtitle = const [],
  4. List<Widget> leading = const [],
  5. List<Widget> actions = const [],
  6. Widget? flexible,
  7. bool hasFlexible = true,
  8. double height = 60,
  9. double extended = 110,
})

Implementation

const CustomSliverAppBar({
  super.key,
  this.title,
  this.subtitle = const [],
  this.leading = const [],
  this.actions = const [],
  this.flexible,
  this.hasFlexible = true,
  this.height = 60,
  this.extended = 110,
});