CHB61 / multi_select_flutter

A flexible multi select package for Flutter. Make multi select widgets the way you want.
https://pub.dev/packages/multi_select_flutter
BSD 2-Clause "Simplified" License
238 stars 223 forks source link

Can't reduce the spacing between chips #180

Open daniwaxman opened 1 year ago

daniwaxman commented 1 year ago
 There does not appear to be away to reduce the spacing (padding) between each chip. This is my code and I want the horizontal row of chips to be closer together.

 Row(
                      mainAxisAlignment: MainAxisAlignment.start,
                      children: [
                        MultiSelectChipField(
                          chipShape: CircleBorder(
                            side: BorderSide(width: 1),
                          ),
                          items: daysOfWeek.entries
                              .map((entry) => MultiSelectItem(
                                  entry.value, entry.key))
                              .toList(),
                          initialValue: [],
                          showHeader: false,
                          decoration: BoxDecoration(border: null),
                          selectedTextStyle:
                              TextStyle(color: Colors.white),
                          textStyle: TextStyle(color: Colors.black),
                          selectedChipColor: AppColors.secondaryColor,
                          scroll: false,
                        ),
                      ],
                    ),