Unverified Commit f049f436 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Update AppBar docs to analyze sample code (#16634)

parent b1ecf1ea
......@@ -188,22 +188,23 @@ class AppBar extends StatefulWidget implements PreferredSizeWidget {
/// For less common operations, consider using a [PopupMenuButton] as the
/// last action.
///
/// For example:
/// ## Sample code
///
/// ```dart
/// return new Scaffold(
/// new Scaffold(
/// appBar: new AppBar(
/// title: new Text('Hello World'),
/// actions: <Widget>[
/// new IconButton(
/// icon: new Icon(Icons.shopping_cart),
/// tooltip: 'Open shopping cart',
/// onPressed: _openCart,
/// onPressed: () {
/// // ...
/// },
/// ),
/// ],
/// ),
/// body: _buildBody(),
/// );
/// )
/// ```
final List<Widget> actions;
......@@ -767,11 +768,11 @@ class SliverAppBar extends StatefulWidget {
/// For less common operations, consider using a [PopupMenuButton] as the
/// last action.
///
/// For example:
/// ## Sample code
///
/// ```dart
/// return new Scaffold(
/// body: new CustomView(
/// new Scaffold(
/// body: new CustomScrollView(
/// primary: true,
/// slivers: <Widget>[
/// new SliverAppBar(
......@@ -789,7 +790,7 @@ class SliverAppBar extends StatefulWidget {
/// // ...rest of body...
/// ],
/// ),
/// );
/// )
/// ```
final List<Widget> actions;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment