This page is only meant for demonstration purposes. Users can see what they
entered and which code was being saved. The page is only included in the
questionnaire_demo()
, but not in the other questionnaire templates.
Arguments
- ...
All additional parameters are passed to
new_page()
Examples
if (FALSE) { # \dontrun{
my_questionnaire <- list(
page_first_freetext(),
page_second_freetext(),
page_select_suggestion(),
page_none_selected_freetext(),
page_followup(1),
page_followup(2),
page_results()
)
if (interactive()) {
app(questionnaire = my_questionnaire)
}
} # }