FlyoutContent constructor

const FlyoutContent({
  1. Key? key,
  2. required Widget child,
  3. Color? color,
  4. ShapeBorder? shape,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
  6. Color shadowColor = Colors.black,
  7. double elevation = 8,
  8. BoxConstraints? constraints,
  9. bool useAcrylic = true,
})

Creates a flyout content

Implementation

const FlyoutContent({
  super.key,
  required this.child,
  this.color,
  this.shape,
  this.padding = const EdgeInsets.all(8.0),
  this.shadowColor = Colors.black,
  this.elevation = 8,
  this.constraints,
  this.useAcrylic = true,
});