SimpleBox constructor

const SimpleBox({
  1. Key? key,
  2. String? title,
  3. List<Widget>? actions,
  4. bool isLoading = false,
  5. EdgeInsets? bodyPadding,
  6. WidgetBuilder? bodyBuilder,
  7. double? titleHeight,
  8. double? maxWidth,
  9. Color? backgroundColor,
  10. double? borderRadius,
  11. Widget? titleWidget,
  12. bool bodyIsExpanded = false,
})

Implementation

const SimpleBox(
    {super.key,
    this.title,
    this.actions,
    this.isLoading = false,
    this.bodyPadding,
    this.bodyBuilder,
    this.titleHeight,
    this.maxWidth,
    this.backgroundColor,
    this.borderRadius,
    this.titleWidget,
    this.bodyIsExpanded = false});