flutter Widget基础

AppBar - 导航栏

AppBar(
  title: Text('FirstPage'),
  elevation: 0.0, // header 下面的边线显示,值越大显示越明显
),

参数说明:

  • title:标题,String
  • elevation:下边线,数字类型,值越大显示越明显

猜你喜欢

转载自www.cnblogs.com/cap-rq/p/12758694.html