multi_select_flutter icon indicating copy to clipboard operation
multi_select_flutter copied to clipboard

Can't reduce the spacing between chips

Open daniwaxman opened this issue 2 years ago • 0 comments

 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,
                        ),
                      ],
                    ),

daniwaxman avatar Jun 05 '23 13:06 daniwaxman