This Week's Record

[Flutter] Text위젯 본문

Flutter/GUI

[Flutter] Text위젯

Eju 2022. 9. 14. 02:03

Text 위젯

글을 화면에 노출시킬 때

 

Code

Minimum Code

Text('텍스트 위젯',),

 

min버전 결과물

 

Maximul Code

Text(
    '텍스트 위젯',
    style: TextStyle(
        fontSize: 35, // 폰트 크기
        fontWeight: FontWeight.bold, // 폰트 두께
        color: Colors.amber, // 폰트 색상
    ),
),

max버전 결과물

 

Reference

링크링크