seong

Flutter - Text.rich 본문

Flutter/Flutter

Flutter - Text.rich

hyeonseong 2022. 11. 26. 16:46

한 문단에 글자들을 각각 여러 스타일을 적용하고 싶을때 rich를 사용해 TextSpan()들의 모음으로 완성한다.


TextSpan로 하나의 문장에 여러가지 TextSpan들을 합쳐서 만들었다.

Text.rich(
      TextSpan(
        children: [
          TextSpan(text: "안녕", style: TextStyle(color: Colors.blue)),
          TextSpan(text: "하세요", style: TextStyle(fontWeight: FontWeight.bold, color: Colors.green)),
          TextSpan(text: "Text공부중입니다.", style: TextStyle(fontSize: 10, color: Colors.red)),
        ],
      ),
    ),