style의 경우 Icon, Text
에서 사용 가능하다.
appBar: AppBar(title: Text('앱제목'), actions: [Icon(Icons.abc), Icon(Icons.abc)], leading: Icon(Icons.start),),
따라서 위의 코드를
appBar: AppBar(title: Text('앱제목', style: Textstyle(fontsize: 50.0)), actions: [Icon(Icons.abc), Icon(Icons.abc)], leading: Icon(Icons.start),),
위와 같이 바꿀 수 있다.
여기서 왜 코드가 점점 길어지는지 느낄 수 있었다.