Flutter/Widget 썸네일형 리스트형 [Widget] TextSpan의 height에 관련된 이야기 TexpSpan의 height 아래와 같은 코드가 있다고 생각해보자 Text.rich( TextSpan( children: [ TextSpan( text: '냠', style: logoBig(color: Colors.black).copyWith(height: 1.2),), TextSpan( text: '냠', style: logoBig(color: AppColors.bgColorDark).copyWith(height: 1.2), ), ], ), ), 근데 TextSpan으로 작성을 하면 아래의 그림과 같이 윗 공간에 여백이 남는다.. 해결방법 아래의 사진을 보고 아 TextSpan에서 height을 줘야 공백이 사라진다는 것을 알 수 있었다. 더보기 이전 1 2 다음