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:
@ -210,15 +210,17 @@ class _SelectOptionWrapState extends State<SelectOptionWrap> {
|
|||||||
} else {
|
} else {
|
||||||
final children = widget.selectOptions.map(
|
final children = widget.selectOptions.map(
|
||||||
(option) {
|
(option) {
|
||||||
return SelectOptionTag.fromOption(
|
return Padding(
|
||||||
context: context,
|
padding: const EdgeInsets.only(right: 4),
|
||||||
option: option,
|
child: SelectOptionTag.fromOption(
|
||||||
|
context: context,
|
||||||
|
option: option,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
).toList();
|
).toList();
|
||||||
|
|
||||||
child = Wrap(
|
child = Wrap(
|
||||||
spacing: 4,
|
|
||||||
runSpacing: 2,
|
runSpacing: 2,
|
||||||
children: children,
|
children: children,
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user