carp_survey_package 0.7.0 copy "carp_survey_package: ^0.7.0" to clipboard
carp_survey_package: ^0.7.0 copied to clipboard

outdated

CARP survey sampling package. Samples survey data from the Flutter Research Package.

example/lib/main.dart

import 'package:carp_mobile_sensing/carp_mobile_sensing.dart';
import 'package:carp_survey_package/survey.dart';
import 'package:research_package/research_package.dart';

/// This is a very simple example of how this sampling package is used with CARP Mobile Sensing (CAMS).
/// NOTE, however, that the code below will not run.
/// See the documentation on how to use CAMS: https://github.com/cph-cachet/carp.sensing-flutter/wiki
///
/// Also take a look at the [CAMS Example app](https://github.com/cph-cachet/carp.sensing-flutter/tree/master/carp_mobile_sensing_app) for use of the Survey Package.
void main() async {
  SamplingPackageRegistry.register(SurveySamplingPackage());

  Study study = Study("1234", "bardram", name: "bardram study");

  // adding all measure from the common schema to one one trigger and one task
  study.addTriggerTask(
          DelayedTrigger(delay: 30 * 1000),
          Task(name: 'WHO-5 Survey')
            ..measures.add(RPTaskMeasure(
              MeasureType(NameSpace.CARP, SurveySamplingPackage.SURVEY),
              name: 'WHO5',
              enabled: true,
              surveyTask: who5Task,
//              onSurveyTriggered: onSurveyTriggered,
//              onSurveySubmit: onSurveySubmit,
            )))
      //
      ;
  // Create a Study Controller that can manage this study, initialize it, and start it.
  StudyController controller = StudyController(study);

  // await initialization before starting
  await controller.initialize();
  controller.resume();

  // listening on all data events from the study
  controller.events.forEach(print);
}

void onSurveyTriggered(SurveyPage surveyPage) {
  //@TODO handle a callback when the survey is triggered.
}

void onSurveySubmit(RPTaskResult result) {
  //@TODO handle a callback when the survey is done.
}
3
likes
0
pub points
72%
popularity

Publisher

verified publishercachet.dk

CARP survey sampling package. Samples survey data from the Flutter Research Package.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

carp_mobile_sensing, flutter, json_annotation, openmhealth_schemas, research_package

More

Packages that depend on carp_survey_package