nudge_quiz 0.0.1
nudge_quiz: ^0.0.1 copied to clipboard
Nudge Quiz Package
Challenges SDK for Flutter #
This package provides the entire SDK for the Challenges platform for Flutter.
Usage #
To use this package, add challenges_flutter as
a dependency in your pubspec.yaml file.
dependencies:
challenges_flutter: {{version}}
In the Dart code, import the library.
import 'package:nudge_quiz/nudge_quiz.dart';
dd
Add the NudgeQuizUi widget to the plugins list.
return NudgeProvider(
nudgeInstance: nudge,
plugins: const [
NudgeQuizUi(
)
]
,
...