flutter appbar 플러터 앱바 너비 높이 글자 스타일 조정 leading text
1. 길이 조정 leadingWidth 를 통해 글자에 할애할 칸이 어느정도인지 조정할 수 있다. 전 return Scaffold( appBar: AppBar( leading: const Text("Instagram", style : TextStyle(fontSize : 18, fontWeight: FontWeight.normal, color: Colors.black87)), actions: const[Icon(Icons.add_box_outlined)]), body: const Text('hi'), ); 후 return Scaffold( appBar: AppBar( leadingWidth: 30, leading: const Text("Instagram", style : TextStyle(fontSize..
2022.07.10