프로그래밍/Flutter & Dart
[Flutter] AppBar의 title 왼쪽으로 정렬하기
소꿍
2022. 11. 24. 01:00
AppBar의 centerTitle property를 false 로 설정한다.
return Scaffold(
appBar: AppBar(
centerTitle: false, // 여기
title: Text('TITLE'),
),
...
- 참고한 글
https://stackoverflow.com/questions/58913303/how-to-place-appbar-title-in-left-side-in-flutter