FloatingRoundedAppBar constructor

const FloatingRoundedAppBar({
  1. Key? key,
  2. Widget? title,
  3. List<Widget>? actions,
  4. Widget? leading,
  5. double height = 48,
  6. Color? backgroundColor,
  7. EdgeInsetsGeometry margin = const EdgeInsets.fromLTRB(16, 0, 16, 0),
})

Implementation

const FloatingRoundedAppBar({
  super.key,
  this.title,
  this.actions,
  this.leading,
  this.height = 48,
  this.backgroundColor,
  this.margin = const EdgeInsets.fromLTRB(16, 0, 16, 0),
});