To integrate Nudge Checklists 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.
Checklist SDK is a private SDK and is not hosted on pub.dev. Contact the Nudge team to get the hosting URL of the Checklist SDK and the pubspec.yaml
definitions.
checklistUi = ChecklistUi();
Once you have integrated the Nudge Code SDK, just add the above-defined variable into the list inplugins
property of NudgeProvider
..
..
NudgeProvider(
app: nudge,
plugins: [
checklistUi,
]
..
..
That's it!
Our Nudge Core would now trigger Checklist defined on your Dashboard using the checklistUi
plugin.