Programming/Flutter
Flutter : appBar 투명처리 (스크롤시에도)
web data
2024. 6. 4. 23:07
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
...
);
