appbar2 [Flutter] AppBar의 title 왼쪽으로 정렬하기 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 2022. 11. 24. [Flutter] AppBar에서 뒤로 가기 버튼 없애기 (automaticallyImplyLeading) AppBar에서 왼쪽 상단의 버튼(←, 햄버거 버튼 등)을 없앨 때 automaticallyImplyLeading 속성을 사용한다. AppBar에서 automaticallyImplyLeading: true 로 설정하면 왼쪽에 버튼이 생기고 false로 변경하면 아래와 같이 버튼이 없어진다. automaticallyImplyLeading 속성을 따로 설정해 주지 않으면 기본적으로 버튼이 나타난다. 참고한 글 https://api.flutter.dev/flutter/material/AppBar/automaticallyImplyLeading.html automaticallyImplyLeading property - AppBar class - material library - Dart API bool autom.. 2021. 8. 15. 이전 1 다음