A new Flutter application which implements Radio Widget
- Use the following code to add a Radio button
Radio( value:1, groupValue:1, onChanged:(T) { }, )
The value represent the value of the RadioButton
The groupValue is used to group a bunch of radio buttons such that only one radio button amoungst the group can be selected at a time.