animated_multi_select 1.0.0 copy "animated_multi_select: ^1.0.0" to clipboard
animated_multi_select: ^1.0.0 copied to clipboard

Customizable animated multi select. Get rid of the boring ones.

Alrasasi Multi Selection Animated Widget #

Build Status

Features #

Get your horizantal smooth multi-select widget.

  • Change the color as you want
  • Change the size
  • Create you preffered customized multi list
  • Put it anywhere

ScreenShots #

Installation #

You should ensure that you add the alrasasi_animated_multi_select as a dependency in your flutter project.


dependencies:
  animated_multi_select: ^1.0

You should then run flutter packages get in your terminal so as to get the package.

Usage #

For production environments...

            SingleChildScrollView(
              child: Row(
                children: <Widget>[
                  Flexible(
                      child: MultiSelectChip(
                    reverseScroll: false,
                    introWidget: CircleTransWidget(),
                    introWidgetWidth: 100,
                    color: Color(0xff293462),
                    width: 100,
                    height: 85,
                    borderRadius: BorderRadius.circular(15),
                    borderWidth: 3,
                    mainList: this.mainList,
                    onSelectionChanged: (selectedList) {
                      setState(() {
                        selectedList = selectedList;
                      });
                    },
                    widgetList: widgetList,
                    initialSelectionList: selectedList,
                  )),
                ],
              ),
            ),

Documentation #

MultiSelectChip class

Plugin README
reverseScroll from left to write of reverse
introWidget The widget beside the multi list
introWidetWidth the width of the introWidget is required, it is in stack
color The color of the widget and its border
width The width of the single selectio widget
height The height of the single selected widget
borderRadius the border radius of the single selected widget
onSelectionChanged A function to react to selection actions
initialSelectionList Initial list part from the main list
widgetList the map that mutches the item with its created widget (see example in github)

"# animated_multi_selection"

4
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Customizable animated multi select. Get rid of the boring ones.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_multi_select