RichText 위젯 사용법입니다.
쉬울듯 하면서도. 의외로 쓸라고 하면 까묵.
구글링도 귀찮아서, 그냥 기재해둡니다.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: RichText(
textAlign: TextAlign.center,
text: TextSpan(
text: 'Hello ',
style: ts,
children: <TextSpan>[
TextSpan(
text: 'bold',
style: TextStyle(
fontSize: 24,
color: Colors.black,
),
),
TextSpan(
text: '\nworld!',
style: TextStyle(
color: Colors.blue,
fontSize: 13,
),
),
],
),
),
),
);
}
}
이룬것은 없으나, 이것이 첫걸음이 될지어다.