Flutter Web Inbox
Learn how to set up and handle web inbox notifications in Flutter.
Overview
The Web Inbox channel enables you to deliver personalized notifications to your website users in real time based on the actions they perform on your website. The Web Inbox window stacks these notifications; users can access them later.
Set Up Web Inbox in Flutter
To set up Web Inbox in Flutter:
- Add the button/div with the
id
as configured on the CleverTap dashboard. Set the visibility of the element as hidden.<button id="Element ID" style="visibility: hidden;">Inbox</button>
- Clear the Notifications Badge in the Web Inbox configuration Style section on the CleverTap dashboard.
- Use the custom widget
NotificationButton
to pass the widget on which the inbox must be rendered.NotificationButton(child: Icon(Icons.notifications))
Manage Web Inbox in Flutter
You can manage your Web Inbox by calling the following APIs:
Get Total Inbox Message Count
Retrieves the total count of the web inbox messages.
int total = await CleverTapPlugin.getInboxMessageCount();
print("Total count = " + total.toString());
Get Total Inbox Unread Count
Retrieves the total count of the unread web inbox messages.
int unread = await CleverTapPlugin.getInboxMessageUnreadCount();
print("Unread count = " + unread.toString());
Get All Inbox Messages
Retrieves all the inbox message content.
List messages = await CleverTapPlugin.getAllInboxMessages();
Get All Unread Inbox Messages
Retrieves all the unread inbox messages.
List messages = await CleverTapPlugin.getUnreadInboxMessages();
Get an Inbox Message for the Given Message ID
Retrieves an inbox message based on the specified message ID.
var messageForId = await CleverTapPlugin.getInboxMessageForId(messageId);
Delete an Inbox Message for the Given message ID
Deletes an inbox message based on the specified message ID.
await CleverTapPlugin.deleteInboxMessageForId(messageId);
Mark Message as Read for the Given Message ID
Marks an inbox message as read based on the specified message ID.
await CleverTapPlugin.markReadInboxMessageForId(messageId);
Updated 12 months ago