반응형
flutter Textrich
-
[Flutter] 플러터 Text 텍스트 위젯(TextSpan, RichText Text.rich )플러터 Flutter 2021. 5. 2. 18:51
텍스트를 그리는 Text() 와 RichText() 있고 그래픽적 효과를 적용할 수 있는 TextStyle() 글자, 문장을 모아 문단을 구성할 수 있게 해주는 TextSpan()이 있다. Text() //defulat Text('A Text widget'); //option Text('bold text', textAlign: TextAlign.center, style: TextStyle(fontWeight: FontWeight.bold), ) textAlign : 문자를 수평적으로 배치하는 방법. (center, left, right, end, ...) textDirection : 문자 배치 방향. (ltr:왼쪽에서 오른쪽으로, rtl:오른쪽에서 왼쪽으로, ...) style : 문자의 스타일. (Bo..