我尝试了一些方法来使芯片变大,但直到现在我都没有尝试过(例如SizedBox等)。
在Chip的文档中也找不到任何内容:
https://api.flutter.dev/flutter/material/Chip-class.html
不胜感激
_buildChip() {
return Expanded(
child: Chip(
materialTapTargetSize: MaterialTapTargetSize.padded,
avatar: SizedBox(
height: 60,
width: 60,
child: CircleAvatar(
child: Icon(Icons.save),
)),
label: Text("awd"),
));
}