animated_radio_buttons

Creator: coderz1093

Last updated:

Add to Cart

Description:

animated radio buttons

animated_radio_buttons #
A radio button package for flutter. This widget is useful to quickly add a set of radio buttons to your flutter app.
Package page #
animated_radio_buttons
Simple Usage #
Creating a basic RadioButtons Group
int myVar ;

AnimatedRadioButtons(
backgroundColor: Colors.yellow[400],
value: myVar,
layoutAxis: Axis.horizontal,
buttonRadius: 40.0,
items: [
AnimatedRadioButtonItem(
label: "Star Battles",
color: Colors.black,
fillInColor: Colors.grey),
AnimatedRadioButtonItem(
label: "Star Trek",
labelTextStyle: TextStyle(color: Colors.blue),
fillInColor: Colors.yellow[400]),
AnimatedRadioButtonItem(
label: "Losers",
color: Colors.green,
fillInColor: Colors.greenAccent)
],
onChanged: (value) {
setState(() {
myVar = value;
});
},
);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.