TexpSpan의 height
아래와 같은 코드가 있다고 생각해보자
Text.rich(
TextSpan(
children: <TextSpan>[
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을 줘야 공백이 사라진다는 것을 알 수 있었다.
'Flutter > Widget' 카테고리의 다른 글
[Widget] Is there a way to load async data on initState method? (0) | 2021.12.07 |
---|---|
[Widget] CheckBox (0) | 2021.11.30 |
[Widget] TextField, TextFormField (validate) (0) | 2021.11.30 |
[Widget] WillPopScope (0) | 2021.11.23 |
[Widget] FocusNode (0) | 2021.11.23 |