Flutter - RichText(TextSpan)

목진성·2024년 11월 14일

Flutter 기초

목록 보기
13/15

RichText란?

여러가지 style이 혼합된 Text위젯을 만들때 사용한다.

  • 예시
  • 예시 코드
RichText(
  text: TextSpan(
    style: TextStyle(fontSize: 18),
    children: [
      TextSpan(text: 'Result: '),
      TextSpan(
        text: 'Normal',
        style: TextStyle(
          fontWeight: FontWeight.bold,
          color: Theme.of(context).highlightColor,
        ),
      ),
      TextSpan(text: ' (BMI 10-30)'),
    ],
  ),
)
profile
우주를 항해하는 여행자

0개의 댓글