Skip to content

Latest commit

 

History

History

radio_button

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

radio_button

A new Flutter application which implements Radio Widget

How to implement a Radio Groups

  • 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.

Screenshots

close