글자 디자인 하기 Text()는 style: 안에 스타일을 넣을 수 있음 return MaterialApp( home: Scaffold( appBar: AppBar(title: Text('앱제목'),), body: SizedBox( child: Text('안녕', style: TextStyle( color: Colors.Color(0xffaaaaaaa)),) ), ), ); 색 주는 법 1. Colors.색이름 2. Color(0xffaaaaaaa) (헥스칼라 넣기 전에 '0xff'는 미리 채워줘야함) 3. Color.fromRGBO() 글자 디자인하는 법 style: TextStyle() @override Widget build(BuildContext context) { return MaterialAp..