[Flutter] AppBar 뒤로가기 버튼 없애기

우루성·2024년 9월 5일
  1. automaticallyImplyLeading값을 false로 설정
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        automaticallyImplyLeading: false,
        title: const Text('Second Screen'),
      ),
      body: Container();
 	),
 }
profile
Flutter 개발자

0개의 댓글