To integrate Nudge Survey UI into Flutter, you need to make sure that the basic integration of the Nudge Core SDK is done, if you have not already done it, check here.
Install our Leaderboard UI SDK from here
Leaderboard with a specific score
const leaderboardUi = LeaderboardUi(
token: "<<Insert your secretKey>>",
externalId: "<<Insert your external id>>"
);
Leaderboard with a specific reward
const leaderboardUi = LeaderboardUi(
token: "<<Insert your secretKey>>",
externalId: "<<Insert your external id>>",
rewardId: "<<Insert the reward id from your dashboard>>"
);
To open the Leaderboard, wrap the following snippet into a Navigator object accordingly:
leaderboardUi.open();