flutter 에서 이미지 넣어는데 반영이 안되는 경우 /정중앙에 타이틀

flutter 에서 이미지 넣어는데 반영이 안되는 경우 assets: - images/ - images/common/ 새로 고침 및 재기동 한다, AppBar headerNav({String title}) { return AppBar( title: new Text( '타이틀', textAlign: TextAlign.center, // style: new TextStyle(fontSize: 20.0, color: Colors.white), style: TextStyle(color: Colors.white, fontSize: 22, fontFamily: "NanumGothic", fontWeight: FontWeight.w700, ), ), centerTitle: true, // 정중앙에 타이틀 backgroundColor: Color(0xff324bca), leading: Padding( padding: const EdgeInsets.all(8.0), child: IconButton( icon: Image.asset( "images/common/menu_icon.png", color: Colors.white, ), onPressed: () {}, ), ), actions: [ IconButton( icon: Image.asset( "images/common/logo.png", color: Colors.white, ), onPressed: () {}, ), ], );

댓글

이 블로그의 인기 게시물

자바 string 비교 할때 equlas 를 사용하자

jqgrid 에서 export execl 붙이기

flutter webview scroll 안되는 경우 gestureRecognizers: gestureRecognizers, 추가 해서 되었다