selectable_circle 0.0.1 copy "selectable_circle: ^0.0.1" to clipboard
selectable_circle: ^0.0.1 copied to clipboard

outdated

A new Flutter package project.

selectable_circle_text #

A Flutter package for an Circle that can be Selected with animation.

How to use #

SelectableCircleText(
    width: 80.0,
    onSelected: () {
    setState(() {
        _isSelected2 = !_isSelected2;
    });
    },
    child: Icon(Icons.star),
);

Screenshot #

Parameters #

    /// the width and height of the CircleWidget
final double width;

/// is called when the circle is tapped
final VoidCallback onSelected;

/// child displayed on top of the circle
final Widget child;

/// widget should be displayed as selected
final bool isSelected;

/// Color of the circle
final Color color;

/// borderColor of the circle
final Color borderColor;

/// Color of the circle when selected
///
/// this option also disables the animation!
final Color selectedColor;

/// Color of the border when selected
///
/// this option also disables the animation!
final Color selectedBorderColor;
10
likes
0
pub points
25%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flare_flutter, flutter

More

Packages that depend on selectable_circle