BaseEmpty constructor
const
BaseEmpty({
- Key? key,
- String? title,
- List<
BaseEmptyAction> actions = const [], - String? description,
- String? icon,
- double iconSize = 16,
- double titleSize = 18,
- double strokeWidth = 3,
- EdgeInsets padding = const EdgeInsets.all(16),
- Color? overlayColor,
- Color? background,
- bool withoutBorder = false,
- VoidCallback? onTap,
Implementation
const BaseEmpty({
super.key,
this.title,
this.actions = const [],
this.description,
this.icon,
this.iconSize = 16,
this.titleSize = 18,
this.strokeWidth = 3,
this.padding = const EdgeInsets.all(16),
this.overlayColor,
this.background,
this.withoutBorder = false,
this.onTap,
});