📅  最后修改于: 2022-03-11 15:00:18.394000             🧑  作者: Mango
@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")),
);
}