농장/Flutter

[Flutter] AppBar transparent 투명색으로, Body 위에 겹치기

귤발자 2021. 1. 24. 19:35
728x90
반응형
@override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        centerTitle: true, //Title text 가운데 정렬
        title: Text(widget.title),
        backgroundColor: Colors.transparent, //appBar 투명색
        elevation: 0.0, //appBar 그림자 농도 설정 (값 0으로 제거)
      ),
      extendBodyBehindAppBar: true, //body 위에 appbar
      body: 
      ...(이하생략)

 

728x90
반응형