Notification struct

Notification represents a desktop notification.

Fields:

  • AppName (string)
  • Title (string)
  • Message (string)
  • Icon (string)
  • Timeout (int32)
  • Action (NotificationAction)

NotificationAction struct

NotificationAction represents a desktop notification button.

Fields:

  • Label (string)
  • Callback (func())

NewNotification function

NewNotification creates a new Notification instance.

Parameters:

  • appName string
  • title string
  • message string
  • icon string
  • timeout int32
  • action ...NotificationAction

Returns:

  • *Notification
Show/Hide Function Body
{
	var notificationAction NotificationAction

	if len(action) > 0 {
		notificationAction = action[0]
	}

	return &Notification{
		AppName: appName,
		Title:   title,
		Message: message,
		Icon:    icon,
		Timeout: timeout,
		Action:  notificationAction,
	}
}

NewNotificationAction function

NewNotificationAction creates a new NotificationAction instance.

Parameters:

  • label string
  • callback func()

Returns:

  • NotificationAction

References:

Show/Hide Function Body
{
	return NotificationAction{
		Label:    label,
		Callback: callback,
	}
}