๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
studies/Front-end

[Flutter] AppBar transparent ํˆฌ๋ช…์ƒ‰์œผ๋กœ, Body ์œ„์— ๊ฒน์น˜๊ธฐ

by Vada Kim 2021. 1. 24.
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
๋ฐ˜์‘ํ˜•