Flutter 修改appBar 高度

 Scaffold(
      appBar: PreferredSize(

             child: AppBar(
                
                  title:Text("AppBar"),
                  bottom: _appBarView(),
               ),
       preferredSize: Size.fromHeight(60.0)),  //自定义高度

       body: _tabBarView(),
 )