添加新的标扑应用栏

代码示例

0
0

N

AppBar(  title: Text("Hello Appbar"),  leading: Icon(    Icons.menu,  ),);
0
0

N

AppBar(  title: Text("Hello Appbar"),  leading: GestureDetector(      onTap: () { /* Write listener code here */ },      child: Icon(        Icons.menu,  // add custom icons also      ),  ),  actions: <Widget>[    Padding(      padding: EdgeInsets.only(right: 20.0),      child: GestureDetector(        onTap: () {},        child: Icon(          Icons.search,          size: 26.0,        ),      )    ),    Padding(      padding: EdgeInsets.only(right: 20.0),      child: GestureDetector(        onTap: () {},        child: Icon(            Icons.more_vert        ),      )    ),  ],),

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................