728x90
반응형
Text 스타일을 지정해보자.
Text(
'TextStyle 지정.\n'
'TextStyle 설정.',
style: TextStyle(
fontSize: 25,
letterSpacing: 1.0,
wordSpacing: 2.0,
height: 1.2,
color: Colors.grey[600],
));
- fontSize : 글자 크기
- letterSpacing : 자간
- height : 줄 간격
- color : 글자 색상
728x90
반응형