AppBar에서 왼쪽 상단의 버튼(←, 햄버거 버튼 등)을 없앨 때
automaticallyImplyLeading 속성을 사용한다.
AppBar에서 automaticallyImplyLeading: true 로 설정하면 왼쪽에 버튼이 생기고


false로 변경하면 아래와 같이 버튼이 없어진다.

automaticallyImplyLeading 속성을 따로 설정해 주지 않으면 기본적으로 버튼이 나타난다.
참고한 글
automaticallyImplyLeading property - AppBar class - material library - Dart API
bool automaticallyImplyLeading final Controls whether we should try to imply the leading widget if null. If true and leading is null, automatically try to deduce what the leading widget should be. If false and leading is null, leading space is given to tit
api.flutter.dev
댓글