728x90
해당 텍스트를 보이게 하려면 어떻게 해야 할까요?
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text("Hello ", style: TextStyle(fontSize: 48, color: Colors.yellow),),
Text("World ", style: TextStyle(fontSize: 48, color: Colors.red, fontWeight: FontWeight.bold),),
Text("~!!", style: TextStyle(fontSize: 48, color: Colors.yellow),),
],
),
),
),
);
}
}
이런식으로도 가능하지만 이를 묶어서 관리하는 위젯이 RichText
RichText 사용
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: RichText(
text: TextSpan(
style: TextStyle(color: Colors.yellow, fontSize: 48),
children: [
TextSpan(text: "Hello "),
TextSpan(text: "World ", style: TextStyle(color: Colors.red, fontWeight: FontWeight.bold),),
TextSpan(text: "~!!"),
],
),
),
),
),
);
}
}
이런식으로 바탕이 되는 설정을 지정하고, 따로 설정하고 싶은 부분만 style을 주면 손쉽게 관리할 수 있습니다.
'Flutter > 기본' 카테고리의 다른 글
Flutter) TextFormField 숫자만 입력받기. (1) | 2022.09.29 |
---|---|
Flutter) Container에 BoxDecoration 사용하기 (0) | 2022.08.10 |
Flutter) google_maps_flutter 사용해보기 (0) | 2022.08.08 |
WidgetsFlutterBinding.ensureInitialized(); (0) | 2022.07.27 |
Flutter - Widget이란 (0) | 2022.07.20 |