플러터 leading에 버튼을 넣고 버튼크기 변경
appBar: AppBar( //leadingWidth: 120, leading: TextButton( child: Text('텍스트버튼',style: TextStyle(fontSize: 14,color: Colors.black) ), style: TextButton.styleFrom( backgroundColor: Colors.green ), onPressed: () { print('menu button is clicked'); }, ), actions: [Icon(Icons.star),Icon(Icons.star)], ), appBar: 상단 leading: 왼쪽 즉 상단 왼쪽에 TextButton을 만들려고 한다. 하지만 버튼의 글자가 길다보니 줄바꿈이 되고 버튼의 크기가 너무 작다 style: T..