Answers for "transparent custom appbar in flutter"

1

flutter transparent appbar

@override
  Widget build(BuildContext context) {
    return Scaffold(
      extendBodyBehindAppBar: true,
      backgroundColor: Colors.red,
      appBar: AppBar(
        backgroundColor: Colors.transparent,
        elevation: 0,
        title: Text("Title"),
      ),
      body: Center(child: Text("Content")),
    );
  }
Posted by: Guest on April-05-2021

Code answers related to "transparent custom appbar in flutter"

Browse Popular Code Answers by Language