I'm just starting out using R and Shiny, so I'm super new at both.
I've managed to build a simply Shiny app that has several types of widgets (checkbox, drop downs, number, and text input etc.). I have also added a submit button.
Example of one of my widgets:
checkboxGroupInput("Check Group",
h4("Show Name"),
choices = list("Absent or Not Affected" = 0,
"Affected" = 1),
selected = FALSE)
All the widgets work just fine.
The goal of the application is to have a user complete the form in total, meaning give all the widgets a new value, and then click submit. Once the user clicks submit a new row is written to a csv with all the user supplied values for the widgets.
Any super simple example of how to do that would be great. I can take that example and apply it to the rest of the application.
Cheers ~!