build method

  1. @override
dynamic build(
  1. dynamic context
)

Implementation

@override
Widget build(BuildContext context) {
  return Column(
    mainAxisSize: MainAxisSize.min,
    children: [
      const SizedBox(height: 20.0),
      actionItemUI(
        context: context,
        actionIcon: Atlas.calendar_dots,
        actionName: L10n.of(context).eventShare,
        onTap: () => onShareEventSelected(),
      ),
      const SizedBox(height: 20.0),
    ],
  );
}