appBar 투명처리시 아래와 같이 설정했으나,
backgroundColor: Colors.transparent,
화면 스크롤처리 시 미세하게 반투명한 앱바가 보이는 현상 발생.
해당 현상 없애려면 아래와 같이 추가 설정 필요
Scaffold(
// height of the body is extended to include the height of the AppBar
// and the top of the body is aligned with the top of the AppBar.
extendBodyBehindAppBar: true,
appBar: AppBar(
..
..
backgroundColor: Colors.transparent,
elevation: 0,
shadowColor: Colors.transparent,
surfaceTintColor: Colors.transparent,
), // AppBar
...
);
'Programming > Flutter' 카테고리의 다른 글
ios info.plist 파일 위치 (0) | 2024.06.05 |
---|---|
플러터, 다트 버전 확인 (flutter, dart version) (2) | 2024.06.05 |
안드로이드 앱번들 빌드하기 (aab 파일 생성) (0) | 2024.06.05 |
안드로이드 apk 빌드하기 (0) | 2024.06.05 |
Flutter : FlutterSecureStorage 오류 (0) | 2024.06.04 |