Chip(
... your other props
visualDensity: VisualDensity.compact
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap
padding: EdgeInsets.zero, // Use this or labelPadding but not both
labelPadding: EdgeInsets.symmetric(horizontal: 4),
labelStyle: TextStyle(fontSize: 12) // You can reduce the font size for a smaller chip
)
3条答案
按热度按时间63lcw9qa1#
在
Chip
小工具中设置materialTapTargetSize: MaterialTapTargetSize.shrinkWrap
。nhjlsmyf2#
正如已接受的答案所示,设置
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap
并将Chip
列表放在Wrap
中不仅会丢弃顶部和底部边距,还会丢弃左侧和右侧边距。因此,如果有人想在两个芯片之间给予一些余量,他可以在
Wrap
中使用spacing
uelo1irk3#
有多种方法可以减少你的利润