chip_radio_button 1.1.1 chip_radio_button: ^1.1.1 copied to clipboard
Refresh look of radio button.
Put a short description of the package here that helps potential users know whether this package might be useful for them.
Features #
A alternative look of flutter radio button
Usage #
Include short and useful examples for package users. Add longer examples
to /example
folder.
ChipsFilter(
selected: 1, // Select the second filter as default
filters: [
Filter(label: "A - Z", icon: Icons.assessment),
Filter(label: "H - L", icon: Icons.ac_unit),
Filter(label: "Reverse", icon: Icons.all_inclusive),
Filter(label: "A - Z", icon: Icons.assessment),
Filter(label: "H - L", icon: Icons.ac_unit),
Filter(label: "Reverse", icon: Icons.all_inclusive),
],
onTap: (index) {
print('Index ' + index.toString());
},
),