CustomNavigationBarItem.menu constructor

CustomNavigationBarItem.menu({
  1. Key? key,
  2. Color? acceptAuxiliary,
  3. Color? warning,
  4. GlobalKey<State<StatefulWidget>>? selector,
  5. MyUser? myUser,
  6. List<ContextMenuItem> actions = const [],
  7. void onPresence(
    1. Presence
    )?,
  8. void onAvatar()?,
})

Constructs a CustomNavigationBarItem for a HomeTab.menu.

Implementation

CustomNavigationBarItem.menu({
  Key? key,
  Color? acceptAuxiliary,
  Color? warning,
  GlobalKey? selector,
  MyUser? myUser,
  List<ContextMenuItem> actions = const [],
  void Function(Presence)? onPresence,
  void Function()? onAvatar,
}) : this._(
       key: key,
       tab: HomeTab.menu,
       child: ContextMenuRegion(
         selector: selector,
         selectorClosable: false,
         key: const Key('MenuButton'),
         alignment: Alignment.bottomRight,
         margin: const EdgeInsets.only(bottom: 8, left: 8),
         actions: [
           ...actions,
           ContextMenuTile(
             label: 'label_presence_present'.l10n,
             onPressed: (context) {
               onPresence?.call(Presence.present);
               Navigator.of(context).pop();
             },
             trailing: Container(
               width: 16,
               height: 16,
               decoration: BoxDecoration(
                 shape: BoxShape.circle,
                 color: acceptAuxiliary,
               ),
             ),
           ),
           ContextMenuTile(
             label: 'label_presence_away'.l10n,
             onPressed: (context) {
               onPresence?.call(Presence.away);
               Navigator.of(context).pop();
             },
             trailing: Container(
               width: 16,
               height: 16,
               decoration: BoxDecoration(
                 shape: BoxShape.circle,
                 color: warning,
               ),
             ),
           ),
         ],
         child: Padding(
           padding: const EdgeInsets.only(bottom: 2),
           child: AvatarWidget.fromMyUser(
             myUser,
             radius: AvatarRadius.normal,
             onForbidden: onAvatar,
           ),
         ),
       ),
     );