안녕하세요.
Chip 디자인을 커스텀 하고 싶은데,
아래와 같이 padding을 0으로 해도 높이값이 text background보다 크게 잡혀 height가 더 줄어들질 않네요.
height를 고정값으로 가져가진 않을 예정인데요. 기본 height를 없앨 수 있는 방법이 있을까요?
ActionChip(
onPressed: () {},
label: Text(
'Chip Sample',
style: TextStyle(backgroundColor: Colors.red),
),
padding: EdgeInsets.all(0),
labelPadding: EdgeInsets.all(0),
),