This is supported by Scaffold now (in stable – v1.12.13+hotfix.5).
- Set Scaffold
extendBodyBehindAppBarto true, - Set AppBar
elevationto 0 to get rid of shadow, - Set AppBar
backgroundColortransparency as needed.
@override
Widget build(BuildContext context) {
return Scaffold(
extendBodyBehindAppBar: true,
backgroundColor: Colors.red,
appBar: AppBar(
// backgroundColor: Colors.transparent,
backgroundColor: Color(0x44000000),
elevation: 0,
title: Text("Title"),
),
body: Center(child: Text("Content")),
);
}