Flutter In-App SDK
Fyno’s Flutter InApp SDK offers a comprehensive set of notification features within your app. It’s designed to efficiently deliver messages, ensuring optimal performance and user experience.
Installation
Install the package by using one of the following commands.
This will add a line like this to your package’s pubspec.yaml
(and run an implicit dart/flutter pub get
):
Alternatively, your editor might support dart/flutter pub get
. Check the docs for your editor to learn more.
Usage
Before you dive into using the In-App Notification Center, there are some prerequisites you need to fulfill. You must ensure you have the necessary information and generate an HMAC signature.
Prerequisites
Before you start, make sure you have the following information ready
- Workspace ID (WSID): You can find your workspace ID on your Fyno App > API Keys page.
- Integration Token: Obtain the integration token from the Fyno App > Integrations page.
- User ID: This should be a unique identifier for the currently logged-in user. This user ID is crucial for Fyno to send specific notifications to the right users.
HMAC Signature Generation
The HMAC signature is essential for ensuring the security and integrity of your notifications. Here is an example of how to generate the HMAC signature in various programming languages.
Watch out when generating HMAC Signatures!
Avoid generating the signature in the frontend, as it can expose your Integration token. Always generate the token securely in the backend or middleware.SDK Initialisation
Import the package in your Dart file:
To use the SDK in your Flutter application, initialise the SDK as follows:
Reset SDK
To reset the Inapp SDK, typically during logout, call the fynoInapp.reset()
function.
In-App UI
There are 3 ways you can configure the InApp UI.
- Fyno UI
- Fyno Customisable UI
- Your own UI
Fyno UI
Fyno Customisable UI
To customise the Fyno UI, you can pass the notification icon and colours you would like to use for the inapp notification inbox.
As of now, you can only change notification icon to any of the built in icons.
You can do the customisation as follows:
- lightBackground (optional) - The background color in light mode
- darkBackground (optional) - The background color in dark mode
- lightText (optional) - The text color in light mode
- darkText (optional) - The text color in dark mode
- primary (optional) - The background color of primary buttons (if any) in the notification
Your own UI
You have the flexibility to build your own UI. Additionally, you can personalise the icons for actions like ‘Read all’ and ‘Delete all’ with your own custom designs. If you are going to use this approach, it is necessary to invoke the following functions.