mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
Merge pull request #1261 from sahej-dev/main
fix: Extra spacing in multiselect cell
This commit is contained in:
commit
6b528733fa
@ -210,15 +210,17 @@ class _SelectOptionWrapState extends State<SelectOptionWrap> {
|
||||
} else {
|
||||
final children = widget.selectOptions.map(
|
||||
(option) {
|
||||
return SelectOptionTag.fromOption(
|
||||
context: context,
|
||||
option: option,
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(right: 4),
|
||||
child: SelectOptionTag.fromOption(
|
||||
context: context,
|
||||
option: option,
|
||||
),
|
||||
);
|
||||
},
|
||||
).toList();
|
||||
|
||||
child = Wrap(
|
||||
spacing: 4,
|
||||
runSpacing: 2,
|
||||
children: children,
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user