반응형
Text
- textAlign : 정렬 여부
- fontSize : 폰트 크기
- fontWeight : 폰트 효과
- color : 폰트 색깔
- 예시 코드
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
"안녕하세요",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 26,
fontWeight: FontWeight.bold,
color: Colors.black
),
)),
);
}
반응형