@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")),
);
}
Scaffold(
extendBodyBehindAppBar: true,
// or, extandbody: true,
AppBar(
backgroundColor: Colors.transparent,
elevation: 0.0,)
);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent, //<<<<<<<<<
elevation: 0,
title: Text("Title"),
),
body: Center(child: Text("Content")),