1주차(1)-AppBar(movie_reviews)
appBar: AppBar( backgroundColor: Colors.white,//앱바 배경색 지정 title: Row( // Row: 가로배열 Text와 그림을 묶어줌 children: [ Text(//Text : 글자 생성 "Movie Reviews", style: TextStyle( // style-> TextStyle :색, 폰트모양, 폰트크기를 변경하기위한 사전작업 color: Colors.black, //글자색 fontWeight: FontWeight.w900,//글자모양?두께? fontSize: 33,//폰트크기 ), ), Container(//이미지를 배치하기 편하기위해 컨테이너로 묶었음 margin: EdgeInsets.only(left: 140), //컨테이너박스 좌측공간만들기 ch..
2023. 6. 29.