Airoll constructor
const
Airoll({
- Key? key,
- required Widget child,
- required List<
TabItem> ? children, - bool isParent = true,
- bool actOnHover = false,
- bool isFloating = true,
- Clip clipBehavior = Clip.none,
- EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
- Color? color,
- BoxConstraints? constraints,
- double? elevation,
- bool? enableFeedback,
- bool enabled = true,
- Widget? icon,
- double? iconSize,
- TabItem? initialValue,
- void onCanceled()?,
- void onOpened()?,
- PopupMenuPosition? position,
- Color? shadowColor,
- ShapeBorder? shape,
- double? splashRadius,
- Color? surfaceTintColor,
- String? tooltip,
Implementation
const Airoll({
Key? key,
required this.child,
required this.children,
this.isParent = true,
this.actOnHover = false,
this.isFloating = true,
this.clipBehavior = Clip.none,
this.padding = const EdgeInsets.all(8.0),
this.color,
this.constraints,
this.elevation,
this.enableFeedback,
this.enabled = true,
this.icon,
this.iconSize,
this.initialValue,
this.onCanceled,
this.onOpened,
this.position,
this.shadowColor,
this.shape,
this.splashRadius,
this.surfaceTintColor,
this.tooltip,
}) : super(key: key);