配置app.json:
"window": {
"navigationStyle": "custom"
},
实现代码:
///自定义顶部栏
appBar: MPAppBar(
title: Container(
color: Colors.green,
width: MediaQuery.of(context).size.width,
height: 100,
alignment: Alignment.centerLeft,
child: MPText(
'Web模板测试',
style: TextStyle(color: Colors.white),
),
),
context: context,
),
THE END