Inline messages
Display messages related to the content in your application
Last updated
Display messages related to the content in your application
Last updated
Inline messages provide an immediate way for you to notify your users about something that happened while using the application.
components have two important properties to be mindful of:
: by default this is set to false, so that the message only appears when you explicitly want it to. This can be overridden if you wish by setting it to true. When a hidden inline message is set to be visible, you get a nice animation.
: here is where you set the text of your inline message.
Information (Kirigami.MessageType.Information
): the default. Has a blue background, an 'i' icon, and is used to announce a result or tell the user something general. It is not necessary to manually set it.
Positive (Kirigami.MessageType.Positive
): has a green background, tick icon, and indicates that something went well.
Warning (Kirigami.MessageType.Warning
): has an orange background, an exclamation-mark icon, and can be used to warn the user about something they should be mindful of.
Error (Kirigami.MessageType.Error
): has a red background, a cross icon, and can be used to tell the user that something has gone wrong.
Inline messages support rich text, which can be defined with simple HTML-like markup. This allows you to add some formatting to your inline message's text or even include an external web link if you want to.
Inline messages provide a close button that can be used to easily dismiss them.
Standard inline messages are like the ones above: they have a blue background and a default icon. We can change that with the property, which lets us set our inline message to a different type. There are four types we can choose from:
You can also customise the icon that appears on the top left of your message by providing a system icon name for the property. These icon names should correspond to icons installed on your system; you can use an application such as Cuttlefish provided by to browse and search the icons available on your system, and see what their names are.
If your messages need to be interactive, you can attach Kirigami actions to your inline messages. Like with pages, you can do this by setting the property to either a or an array containing components.
By default, this close button is hidden, but this can be overridden by setting the property to true
.