PullDownMenuActionsRow.medium constructor
const
PullDownMenuActionsRow.medium({
- Key? key,
- required List<
PullDownMenuItem> items, - Color? dividerColor,
Creates a row of maximum 3 actions, icon and short (one worded) title.
Actions have height of 66 logical pixels.
Implementation
const PullDownMenuActionsRow.medium({
super.key,
required this.items,
this.dividerColor,
}) : _size = ElementSize.medium,
assert(
items.length <= 3,
'Amount of [items] should not be more than 3',
);