nps_survey 1.3.1
nps_survey: ^1.3.1 copied to clipboard
A Flutter component designed to collect Net Promoter Scores (NPS) from users.
nps_survey #
A Flutter component designed to collect Net Promoter Scores (NPS) from users.
Example #

Installation #
flutter pub add nps_survey
Usage #
Import the library:
import 'package:nps_survey/nps_survey.dart';
Display the dialog by calling:
NPSSurvey().showNPSDialog(
context: context,
callback: (feedback, score) {
print(feedback);
print(score);
});