appbar

개발/Flutter

status bar color 변경

import 'package:flutter/services.dart'; SystemChrome.setSystemUIOverlayStyle( const SystemUiOverlayStyle( statusBarColor: Colors.blue, statusBarIconBrightness: Brightness.light, statusBarBrightness: Brightness.light, ), ); brightness는 아이콘의 색상을 light(흰색), dark(검은색) 중에서 설정하는 것 statusBarIconBrightness는 android의 status bar icon의 색상 결정 statusBarBrightness는 iOS의 status bar icon의 색상 결정(안먹히는 것으로 보임, 더 테..

개발/Flutter

뒤로가기 (leading) 버튼 자동 생성 막기

하위 페이지로 이동할 경우 자동으로 뒤로가기 버튼이 앱 바에 생기게 되는데 이를 없앨 수 있다. AppBar 내의 automaticallyImplyLeading을 false로 준다. AppBar( title: const Text('appbar title'), automaticallyImplyLeading: false, ) 참고 flutter remove back button on appbar I am wondering, if anyone knows of a way to remove the back button that shows up on the appBar in a flutter app when you use Navigator.pushNamed to go to another page. The reaso..

leebera_
'appbar' 태그의 글 목록