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: () {}, ), ], );