selectable_circle_list 0.1.5+1 copy "selectable_circle_list: ^0.1.5+1" to clipboard
selectable_circle_list: ^0.1.5+1 copied to clipboard

A Flutter widget for displaying the Selectable_circle widget in a list. it is also possible to display subitems of the selectable circle

selectable_circle_list #

A flutter widget to display selecetable_circles in a list. You should be able to select the circles. You can define Subitems per item.

How to use #

SelectableCircleList(
    children: _buildItems(),
    description: Padding(
        padding: const EdgeInsets.all(10.0),
        child: Text("test"),
    ),
    subDescription: Padding(
        padding: const EdgeInsets.all(10.0),
        child: Text("subtest"),
    ),
    onTap: _onTapCircle,
    initialValue: "6|subsixth",
    //hideSelection: true // to hide the check icon when tapping
)

List<SelectableCircleItem> _buildItems() {
    return <SelectableCircleItem>[
        SelectableCircleItem(
            Icon(Icons.description), "first", "first", Colors.red),
        SelectableCircleItem(
            Icon(Icons.ac_unit), "second", "second", Colors.orange),
        SelectableCircleItem(
            Icon(Icons.ac_unit), "third", "third", Colors.blue),
        SelectableCircleItem(
            Icon(Icons.ac_unit), "may the 4th", "forth", Colors.green),
        SelectableCircleItem(
            Icon(Icons.ac_unit), "fifth", "fifth", Colors.orange),
        SelectableCircleItem(
            Icon(Icons.ac_unit),
            "6",
            "6",
            Colors.green,
            subItemList: [
            SelectableCircleSubItem("subfirst", "subfirst"),
            SelectableCircleSubItem("subsecond", "subsecond"),
            SelectableCircleSubItem("subthird", "subthird"),
            SelectableCircleSubItem("subfourth", "subfourth"),
            SelectableCircleSubItem("subfifth", "subfifth"),
            SelectableCircleSubItem("subsixth", "subsixth"),
            ],
        ),
    ];
}

Screenshot #

Contribution #

Contribution is more than welcome.

5
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A Flutter widget for displaying the Selectable_circle widget in a list. it is also possible to display subitems of the selectable circle

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

after_layout, flutter, selectable_circle

More

Packages that depend on selectable_circle_list