-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathui.dart
More file actions
45 lines (40 loc) · 1.79 KB
/
Copy pathui.dart
File metadata and controls
45 lines (40 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/// The UI library of Research Package.
///
/// Normally you don't need to use these widgets directly. After creating the model objects from [research_package_model]
/// and adding them to an [RPTask] you can present the different elements by passing it to an [RPUITask].
///
/// This library contains various UI representations (Widgets) of the objects declared in [research_package_model].
/// Many of these Widgets are responsible for making the collected results accessible to others.
/// Also contains general styles, UI statics used in Research Package UI in [RPStyles].
library;
import 'dart:async';
import 'dart:convert';
import 'dart:ui' as ui;
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:just_audio/just_audio.dart';
import 'package:signature/signature.dart';
import 'model.dart';
// Library elements
part 'src/localization/localizations.dart';
part 'src/localization/assets_localization.dart';
part 'src/loggers/activity_event_logger.dart';
part 'src/ui/questions/choice_question_body.dart';
part 'src/ui/questions/date_time_question_body.dart';
part 'src/ui/questions/image_choice_question_body.dart';
part 'src/ui/questions/star_choice_question_body.dart';
part 'src/ui/questions/integer_question_body.dart';
part 'src/ui/questions/double_question_body.dart';
part 'src/ui/questions/slider_question_body.dart';
part 'src/ui/questions/text_input_question_body.dart';
part 'src/ui/completion_step.dart';
part 'src/ui/consent_review_step.dart';
part 'src/ui/form_step.dart';
part 'src/ui/instruction_step.dart';
part 'src/ui/question_step.dart';
part 'src/ui/research_package_styles.dart';
part 'src/ui/task.dart';
part 'src/ui/visual_consent_step.dart';
part 'src/ui/activity_step.dart';
part 'src/ui/timer_step.dart';