A Flutter package for new radio button design. With Elegant Animation.

Features

Screenshot 2021-11-26 115045 Screenshot 2021-11-26 115126 Screenshot 2021-11-26 115022

Usage

TODO: Include short and useful examples for package users. Add longer examples to /example folder.

              ElegantRadioButton<int>(
                groupValue: 1,
                value: 1,
                onChanged: (value) {
                  setState(() {
                    selectedValue = value;
                  });
                },
                fillColor: MaterialStateProperty.all(Colors.red),
              );