아래 예제 처럼 같은 줄에 서로 다른 TextStyle 가진 Text 만들 때 사용한다.
위젯 구조
참고 예시 코드
문서의 예제처럼 Hello의 children으로 bold랑 world를 두기 싫으면
이렇게 할 수 도 있습니다. UI는 똑같이 구성됩니다.
RichText(
text: TextSpan(
children: [
TextSpan(text: 'Hello '),
TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold)),
TextSpan(text: ' world!'),
])
)