Flutter style

줍줍·2023년 8월 28일
0

Flutter

목록 보기
4/11

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),),

위와 같이 바꿀 수 있다.

여기서 왜 코드가 점점 길어지는지 느낄 수 있었다.

profile
쉽게 설명하지 못하면 이해 못한 것

0개의 댓글