어떤 화면에서는 App Bar는 필요하지만 뒤로가기 버튼은 필요하지 않을 수 있다.
그럴 땐 간단하게 AppBar 위젯에서 automaticallyImplyLeading 옵션의 true/false 값을 통해 조절할 수 있다.
Scaffold(
appBar: AppBar(
title: const Text('PMS', style: TextStyle(fontWeight: FontWeight.bold)),
centerTitle: true,
elevation: 0.0,
automaticallyImplyLeading: false, // 여기
),
) // AppBar
'Flutter' 카테고리의 다른 글
Flutter의 Widget 종류 : Stateless와 Stateful (0) | 2024.03.27 |
---|---|
Flutter에서 context란 도대체 무엇일까? (0) | 2023.09.09 |
리액트네이티브가 아닌, 플러터를 선택한 이유 (0) | 2023.09.07 |