nps_survey

A Flutter component designed to collect Net Promoter Scores (NPS) from users.

Example

Example from iOS

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);
    });