Unverified Commit 0d3bb515 authored by MH Johnson's avatar MH Johnson Committed by GitHub

[Docs] Create 'center' snippets template (#40367)

* Create 'center' template
parent 0ef89bb9
...@@ -97,6 +97,15 @@ follows: ...@@ -97,6 +97,15 @@ follows:
`stateful_widget_material`, except that it wraps the stateful widget with a `stateful_widget_material`, except that it wraps the stateful widget with a
`Scaffold`. `Scaffold`.
- [`stateful_widget_scaffold_center`](stateful_widget_scaffold_center.tmpl) : Similar to
`stateful_widget_scaffold`, except that it wraps the stateful widget with a
`Scaffold` _and_ a `Center`.
- [`stateless_widget_scaffold`](stateless_widget_scaffold.tmpl) : Similar to - [`stateless_widget_scaffold`](stateless_widget_scaffold.tmpl) : Similar to
`stateless_widget_material`, except that it wraps the stateless widget with a `stateless_widget_material`, except that it wraps the stateless widget with a
`Scaffold`. `Scaffold`.
- [`stateless_widget_scaffold_center`](stateless_widget_scaffold_center.tmpl) : Similar to
`stateless_widget_scaffold`, except that it wraps the stateless widget with a
`Scaffold` _and_ a `Center`.
// Flutter code sample for {{id}}
{{description}}
import 'package:flutter/material.dart';
{{code-imports}}
void main() => runApp(new MyApp());
/// This Widget is the main application widget.
class MyApp extends StatelessWidget {
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _title,
home: Scaffold(
appBar: AppBar(title: const Text(_title)),
body: Center(
child: MyStatefulWidget(),
),
),
);
}
}
{{code-preamble}}
class MyStatefulWidget extends StatefulWidget {
MyStatefulWidget({Key key}) : super(key: key);
@override
_MyStatefulWidgetState createState() => _MyStatefulWidgetState();
}
class _MyStatefulWidgetState extends State<MyStatefulWidget> {
{{code}}
}
// Flutter code sample for {{id}}
{{description}}
import 'package:flutter/material.dart';
{{code-imports}}
void main() => runApp(new MyApp());
/// This Widget is the main application widget.
class MyApp extends StatelessWidget {
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _title,
home: Scaffold(
appBar: AppBar(title: const Text(_title)),
body: Center(
child: MyStatelessWidget(),
)
),
);
}
}
{{code-preamble}}
/// This is the stateless widget that the main application instantiates.
class MyStatelessWidget extends StatelessWidget {
MyStatelessWidget({Key key}) : super(key: key);
@override
{{code}}
}
...@@ -37,7 +37,7 @@ import 'theme_data.dart'; ...@@ -37,7 +37,7 @@ import 'theme_data.dart';
/// To show the [CheckboxListTile] as disabled, pass null as the [onChanged] /// To show the [CheckboxListTile] as disabled, pass null as the [onChanged]
/// callback. /// callback.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![CheckboxListTile sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile.png) /// ![CheckboxListTile sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile.png)
/// ///
...@@ -53,15 +53,13 @@ import 'theme_data.dart'; ...@@ -53,15 +53,13 @@ import 'theme_data.dart';
/// ```dart /// ```dart
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return CheckboxListTile(
/// child: CheckboxListTile( /// title: const Text('Animate Slowly'),
/// title: const Text('Animate Slowly'), /// value: timeDilation != 1.0,
/// value: timeDilation != 1.0, /// onChanged: (bool value) {
/// onChanged: (bool value) { /// setState(() { timeDilation = value ? 10.0 : 1.0; });
/// setState(() { timeDilation = value ? 10.0 : 1.0; }); /// },
/// }, /// secondary: const Icon(Icons.hourglass_empty),
/// secondary: const Icon(Icons.hourglass_empty),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
...@@ -84,7 +82,7 @@ import 'theme_data.dart'; ...@@ -84,7 +82,7 @@ import 'theme_data.dart';
/// into one. Therefore, it may be necessary to create a custom radio tile /// into one. Therefore, it may be necessary to create a custom radio tile
/// widget to accommodate similar use cases. /// widget to accommodate similar use cases.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![Checkbox list tile semantics sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile_semantics.png) /// ![Checkbox list tile semantics sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile_semantics.png)
/// ///
...@@ -147,19 +145,15 @@ import 'theme_data.dart'; ...@@ -147,19 +145,15 @@ import 'theme_data.dart';
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return LinkedLabelCheckbox(
/// body: Center( /// label: 'Linked, tappable label text',
/// child: LinkedLabelCheckbox( /// padding: const EdgeInsets.symmetric(horizontal: 20.0),
/// label: 'Linked, tappable label text', /// value: _isSelected,
/// padding: const EdgeInsets.symmetric(horizontal: 20.0), /// onChanged: (bool newValue) {
/// value: _isSelected, /// setState(() {
/// onChanged: (bool newValue) { /// _isSelected = newValue;
/// setState(() { /// });
/// _isSelected = newValue; /// },
/// });
/// },
/// ),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
...@@ -172,7 +166,7 @@ import 'theme_data.dart'; ...@@ -172,7 +166,7 @@ import 'theme_data.dart';
/// combining [Checkbox] with other widgets, such as [Text], [Padding] and /// combining [Checkbox] with other widgets, such as [Text], [Padding] and
/// [InkWell]. /// [InkWell].
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![Custom checkbox list tile sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile_custom.png) /// ![Custom checkbox list tile sample](https://flutter.github.io/assets-for-api-docs/assets/material/checkbox_list_tile_custom.png)
/// ///
...@@ -222,19 +216,15 @@ import 'theme_data.dart'; ...@@ -222,19 +216,15 @@ import 'theme_data.dart';
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return LabeledCheckbox(
/// body: Center( /// label: 'This is the label text',
/// child: LabeledCheckbox( /// padding: const EdgeInsets.symmetric(horizontal: 20.0),
/// label: 'This is the label text', /// value: _isSelected,
/// padding: const EdgeInsets.symmetric(horizontal: 20.0), /// onChanged: (bool newValue) {
/// value: _isSelected, /// setState(() {
/// onChanged: (bool newValue) { /// _isSelected = newValue;
/// setState(() { /// });
/// _isSelected = newValue; /// },
/// });
/// },
/// ),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
......
...@@ -175,7 +175,7 @@ abstract class DeletableChipAttributes { ...@@ -175,7 +175,7 @@ abstract class DeletableChipAttributes {
/// that the user tapped the delete button. In order to delete the chip, you /// that the user tapped the delete button. In order to delete the chip, you
/// have to do something similar to the following sample: /// have to do something similar to the following sample:
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// This sample shows how to use [onDeleted] to remove an entry when the /// This sample shows how to use [onDeleted] to remove an entry when the
/// delete button is tapped. /// delete button is tapped.
...@@ -231,7 +231,7 @@ abstract class DeletableChipAttributes { ...@@ -231,7 +231,7 @@ abstract class DeletableChipAttributes {
/// ```dart /// ```dart
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center(child: CastList()); /// return CastList();
/// } /// }
/// ``` /// ```
/// {@end-tool} /// {@end-tool}
......
...@@ -532,7 +532,7 @@ class DropdownButtonHideUnderline extends InheritedWidget { ...@@ -532,7 +532,7 @@ class DropdownButtonHideUnderline extends InheritedWidget {
/// dropdown's value. It should also call [State.setState] to rebuild the /// dropdown's value. It should also call [State.setState] to rebuild the
/// dropdown with the new value. /// dropdown with the new value.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// This sample shows a `DropdownButton` with a customized icon, text style, /// This sample shows a `DropdownButton` with a customized icon, text style,
/// and underline and whose value is one of "One", "Two", "Free", or "Four". /// and underline and whose value is one of "One", "Two", "Free", or "Four".
...@@ -544,35 +544,31 @@ class DropdownButtonHideUnderline extends InheritedWidget { ...@@ -544,35 +544,31 @@ class DropdownButtonHideUnderline extends InheritedWidget {
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return DropdownButton<String>(
/// body: Center( /// value: dropdownValue,
/// child: DropdownButton<String>( /// icon: Icon(Icons.arrow_downward),
/// value: dropdownValue, /// iconSize: 24,
/// icon: Icon(Icons.arrow_downward), /// elevation: 16,
/// iconSize: 24, /// style: TextStyle(
/// elevation: 16, /// color: Colors.deepPurple
/// style: TextStyle(
/// color: Colors.deepPurple
/// ),
/// underline: Container(
/// height: 2,
/// color: Colors.deepPurpleAccent,
/// ),
/// onChanged: (String newValue) {
/// setState(() {
/// dropdownValue = newValue;
/// });
/// },
/// items: <String>['One', 'Two', 'Free', 'Four']
/// .map<DropdownMenuItem<String>>((String value) {
/// return DropdownMenuItem<String>(
/// value: value,
/// child: Text(value),
/// );
/// })
/// .toList(),
/// ),
/// ), /// ),
/// underline: Container(
/// height: 2,
/// color: Colors.deepPurpleAccent,
/// ),
/// onChanged: (String newValue) {
/// setState(() {
/// dropdownValue = newValue;
/// });
/// },
/// items: <String>['One', 'Two', 'Free', 'Four']
/// .map<DropdownMenuItem<String>>((String value) {
/// return DropdownMenuItem<String>(
/// value: value,
/// child: Text(value),
/// );
/// })
/// .toList(),
/// ); /// );
/// } /// }
/// ``` /// ```
......
...@@ -38,7 +38,7 @@ const double _kMinButtonSize = kMinInteractiveDimension; ...@@ -38,7 +38,7 @@ const double _kMinButtonSize = kMinInteractiveDimension;
/// requirements in the Material Design specification. The [alignment] controls /// requirements in the Material Design specification. The [alignment] controls
/// how the icon itself is positioned within the hit region. /// how the icon itself is positioned within the hit region.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// This sample shows an `IconButton` that uses the Material icon "volume_up" to /// This sample shows an `IconButton` that uses the Material icon "volume_up" to
/// increase the volume. /// increase the volume.
...@@ -49,24 +49,20 @@ const double _kMinButtonSize = kMinInteractiveDimension; ...@@ -49,24 +49,20 @@ const double _kMinButtonSize = kMinInteractiveDimension;
/// ///
/// ```dart /// ```dart
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return Column(
/// body: Center( /// mainAxisSize: MainAxisSize.min,
/// child: Column( /// children: <Widget>[
/// mainAxisSize: MainAxisSize.min, /// IconButton(
/// children: <Widget>[ /// icon: Icon(Icons.volume_up),
/// IconButton( /// tooltip: 'Increase volume by 10',
/// icon: Icon(Icons.volume_up), /// onPressed: () {
/// tooltip: 'Increase volume by 10', /// setState(() {
/// onPressed: () { /// _volume += 10;
/// setState(() { /// });
/// _volume += 10; /// },
/// });
/// },
/// ),
/// Text('Volume : $_volume')
/// ],
/// ), /// ),
/// ), /// Text('Volume : $_volume')
/// ],
/// ); /// );
/// } /// }
/// ``` /// ```
......
...@@ -791,7 +791,7 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -791,7 +791,7 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
/// ///
/// An example of this situation is as follows: /// An example of this situation is as follows:
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// Tap the container to cause it to grow. Then, tap it again and hold before /// Tap the container to cause it to grow. Then, tap it again and hold before
/// the widget reaches its maximum size to observe the clipped ink splash. /// the widget reaches its maximum size to observe the clipped ink splash.
...@@ -800,21 +800,19 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe ...@@ -800,21 +800,19 @@ class _InkResponseState<T extends InkResponse> extends State<T> with AutomaticKe
/// double sideLength = 50; /// double sideLength = 50;
/// ///
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return AnimatedContainer(
/// child: AnimatedContainer( /// height: sideLength,
/// height: sideLength, /// width: sideLength,
/// width: sideLength, /// duration: Duration(seconds: 2),
/// duration: Duration(seconds: 2), /// curve: Curves.easeIn,
/// curve: Curves.easeIn, /// child: Material(
/// child: Material( /// color: Colors.yellow,
/// color: Colors.yellow, /// child: InkWell(
/// child: InkWell( /// onTap: () {
/// onTap: () { /// setState(() {
/// setState(() { /// sideLength == 50 ? sideLength = 100 : sideLength = 50;
/// sideLength == 50 ? sideLength = 100 : sideLength = 50; /// });
/// }); /// },
/// },
/// ),
/// ), /// ),
/// ), /// ),
/// ); /// );
......
...@@ -27,7 +27,7 @@ const double _kInnerRadius = 4.5; ...@@ -27,7 +27,7 @@ const double _kInnerRadius = 4.5;
/// will respond to [onChanged] by calling [State.setState] to update the /// will respond to [onChanged] by calling [State.setState] to update the
/// radio button's [groupValue]. /// radio button's [groupValue].
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// Here is an example of Radio widgets wrapped in ListTiles, which is similar /// Here is an example of Radio widgets wrapped in ListTiles, which is similar
/// to what you could get with the RadioListTile widget. /// to what you could get with the RadioListTile widget.
...@@ -52,31 +52,29 @@ const double _kInnerRadius = 4.5; ...@@ -52,31 +52,29 @@ const double _kInnerRadius = 4.5;
/// SingingCharacter _character = SingingCharacter.lafayette; /// SingingCharacter _character = SingingCharacter.lafayette;
/// ///
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return Column(
/// child: Column( /// children: <Widget>[
/// children: <Widget>[ /// ListTile(
/// ListTile( /// title: const Text('Lafayette'),
/// title: const Text('Lafayette'), /// leading: Radio(
/// leading: Radio( /// value: SingingCharacter.lafayette,
/// value: SingingCharacter.lafayette, /// groupValue: _character,
/// groupValue: _character, /// onChanged: (SingingCharacter value) {
/// onChanged: (SingingCharacter value) { /// setState(() { _character = value; });
/// setState(() { _character = value; }); /// },
/// },
/// ),
/// ), /// ),
/// ListTile( /// ),
/// title: const Text('Thomas Jefferson'), /// ListTile(
/// leading: Radio( /// title: const Text('Thomas Jefferson'),
/// value: SingingCharacter.jefferson, /// leading: Radio(
/// groupValue: _character, /// value: SingingCharacter.jefferson,
/// onChanged: (SingingCharacter value) { /// groupValue: _character,
/// setState(() { _character = value; }); /// onChanged: (SingingCharacter value) {
/// }, /// setState(() { _character = value; });
/// ), /// },
/// ), /// ),
/// ], /// ),
/// ), /// ],
/// ); /// );
/// } /// }
/// ``` /// ```
......
...@@ -46,7 +46,7 @@ enum _SwitchListTileType { material, adaptive } ...@@ -46,7 +46,7 @@ enum _SwitchListTileType { material, adaptive }
/// To show the [SwitchListTile] as disabled, pass null as the [onChanged] /// To show the [SwitchListTile] as disabled, pass null as the [onChanged]
/// callback. /// callback.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![SwitchListTile sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile.png) /// ![SwitchListTile sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile.png)
/// ///
...@@ -58,13 +58,11 @@ enum _SwitchListTileType { material, adaptive } ...@@ -58,13 +58,11 @@ enum _SwitchListTileType { material, adaptive }
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return SwitchListTile(
/// child: SwitchListTile( /// title: const Text('Lights'),
/// title: const Text('Lights'), /// value: _lights,
/// value: _lights, /// onChanged: (bool value) { setState(() { _lights = value; }); },
/// onChanged: (bool value) { setState(() { _lights = value; }); }, /// secondary: const Icon(Icons.lightbulb_outline),
/// secondary: const Icon(Icons.lightbulb_outline),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
...@@ -87,7 +85,7 @@ enum _SwitchListTileType { material, adaptive } ...@@ -87,7 +85,7 @@ enum _SwitchListTileType { material, adaptive }
/// into one. Therefore, it may be necessary to create a custom radio tile /// into one. Therefore, it may be necessary to create a custom radio tile
/// widget to accommodate similar use cases. /// widget to accommodate similar use cases.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![Switch list tile semantics sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile_semantics.png) /// ![Switch list tile semantics sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile_semantics.png)
/// ///
...@@ -150,19 +148,15 @@ enum _SwitchListTileType { material, adaptive } ...@@ -150,19 +148,15 @@ enum _SwitchListTileType { material, adaptive }
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return LinkedLabelSwitch(
/// body: Center( /// label: 'Linked, tappable label text',
/// child: LinkedLabelSwitch( /// padding: const EdgeInsets.symmetric(horizontal: 20.0),
/// label: 'Linked, tappable label text', /// value: _isSelected,
/// padding: const EdgeInsets.symmetric(horizontal: 20.0), /// onChanged: (bool newValue) {
/// value: _isSelected, /// setState(() {
/// onChanged: (bool newValue) { /// _isSelected = newValue;
/// setState(() { /// });
/// _isSelected = newValue; /// },
/// });
/// },
/// ),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
...@@ -175,7 +169,7 @@ enum _SwitchListTileType { material, adaptive } ...@@ -175,7 +169,7 @@ enum _SwitchListTileType { material, adaptive }
/// combining [Switch] with other widgets, such as [Text], [Padding] and /// combining [Switch] with other widgets, such as [Text], [Padding] and
/// [InkWell]. /// [InkWell].
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// ///
/// ![Custom switch list tile sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile_custom.png) /// ![Custom switch list tile sample](https://flutter.github.io/assets-for-api-docs/assets/material/switch_list_tile_custom.png)
/// ///
...@@ -227,19 +221,15 @@ enum _SwitchListTileType { material, adaptive } ...@@ -227,19 +221,15 @@ enum _SwitchListTileType { material, adaptive }
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Scaffold( /// return LabeledSwitch(
/// body: Center( /// label: 'This is the label text',
/// child: LabeledSwitch( /// padding: const EdgeInsets.symmetric(horizontal: 20.0),
/// label: 'This is the label text', /// value: _isSelected,
/// padding: const EdgeInsets.symmetric(horizontal: 20.0), /// onChanged: (bool newValue) {
/// value: _isSelected, /// setState(() {
/// onChanged: (bool newValue) { /// _isSelected = newValue;
/// setState(() { /// });
/// _isSelected = newValue; /// },
/// });
/// },
/// ),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
......
...@@ -5496,7 +5496,7 @@ class WidgetToRenderBoxAdapter extends LeafRenderObjectWidget { ...@@ -5496,7 +5496,7 @@ class WidgetToRenderBoxAdapter extends LeafRenderObjectWidget {
/// If it has a child, this widget defers to the child for sizing behavior. If /// If it has a child, this widget defers to the child for sizing behavior. If
/// it does not have a child, it grows to fit the parent instead. /// it does not have a child, it grows to fit the parent instead.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// This example makes a [Container] react to being touched, showing a count of /// This example makes a [Container] react to being touched, showing a count of
/// the number of pointer downs and ups. /// the number of pointer downs and ups.
/// ///
...@@ -5531,28 +5531,26 @@ class WidgetToRenderBoxAdapter extends LeafRenderObjectWidget { ...@@ -5531,28 +5531,26 @@ class WidgetToRenderBoxAdapter extends LeafRenderObjectWidget {
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return ConstrainedBox(
/// child: ConstrainedBox( /// constraints: new BoxConstraints.tight(Size(300.0, 200.0)),
/// constraints: new BoxConstraints.tight(Size(300.0, 200.0)), /// child: Listener(
/// child: Listener( /// onPointerDown: _incrementDown,
/// onPointerDown: _incrementDown, /// onPointerMove: _updateLocation,
/// onPointerMove: _updateLocation, /// onPointerUp: _incrementUp,
/// onPointerUp: _incrementUp, /// child: Container(
/// child: Container( /// color: Colors.lightBlueAccent,
/// color: Colors.lightBlueAccent, /// child: Column(
/// child: Column( /// mainAxisAlignment: MainAxisAlignment.center,
/// mainAxisAlignment: MainAxisAlignment.center, /// children: <Widget>[
/// children: <Widget>[ /// Text('You have pressed or released in this area this many times:'),
/// Text('You have pressed or released in this area this many times:'), /// Text(
/// Text( /// '$_downCounter presses\n$_upCounter releases',
/// '$_downCounter presses\n$_upCounter releases', /// style: Theme.of(context).textTheme.display1,
/// style: Theme.of(context).textTheme.display1, /// ),
/// ), /// Text(
/// Text( /// 'The cursor is here: (${x.toStringAsFixed(2)}, ${y.toStringAsFixed(2)})',
/// 'The cursor is here: (${x.toStringAsFixed(2)}, ${y.toStringAsFixed(2)})', /// ),
/// ), /// ],
/// ],
/// ),
/// ), /// ),
/// ), /// ),
/// ), /// ),
...@@ -5745,7 +5743,7 @@ class _PointerListener extends SingleChildRenderObjectWidget { ...@@ -5745,7 +5743,7 @@ class _PointerListener extends SingleChildRenderObjectWidget {
/// If it has a child, this widget defers to the child for sizing behavior. If /// If it has a child, this widget defers to the child for sizing behavior. If
/// it does not have a child, it grows to fit the parent instead. /// it does not have a child, it grows to fit the parent instead.
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// This example makes a [Container] react to being entered by a mouse /// This example makes a [Container] react to being entered by a mouse
/// pointer, showing a count of the number of entries and exits. /// pointer, showing a count of the number of entries and exits.
/// ///
...@@ -5778,28 +5776,26 @@ class _PointerListener extends SingleChildRenderObjectWidget { ...@@ -5778,28 +5776,26 @@ class _PointerListener extends SingleChildRenderObjectWidget {
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return ConstrainedBox(
/// child: ConstrainedBox( /// constraints: new BoxConstraints.tight(Size(300.0, 200.0)),
/// constraints: new BoxConstraints.tight(Size(300.0, 200.0)), /// child: MouseRegion(
/// child: MouseRegion( /// onEnter: _incrementEnter,
/// onEnter: _incrementEnter, /// onHover: _updateLocation,
/// onHover: _updateLocation, /// onExit: _incrementExit,
/// onExit: _incrementExit, /// child: Container(
/// child: Container( /// color: Colors.lightBlueAccent,
/// color: Colors.lightBlueAccent, /// child: Column(
/// child: Column( /// mainAxisAlignment: MainAxisAlignment.center,
/// mainAxisAlignment: MainAxisAlignment.center, /// children: <Widget>[
/// children: <Widget>[ /// Text('You have entered or exited this box this many times:'),
/// Text('You have entered or exited this box this many times:'), /// Text(
/// Text( /// '$_enterCounter Entries\n$_exitCounter Exits',
/// '$_enterCounter Entries\n$_exitCounter Exits', /// style: Theme.of(context).textTheme.display1,
/// style: Theme.of(context).textTheme.display1, /// ),
/// ), /// Text(
/// Text( /// 'The cursor is here: (${x.toStringAsFixed(2)}, ${y.toStringAsFixed(2)})',
/// 'The cursor is here: (${x.toStringAsFixed(2)}, ${y.toStringAsFixed(2)})', /// ),
/// ), /// ],
/// ],
/// ),
/// ), /// ),
/// ), /// ),
/// ), /// ),
......
...@@ -59,7 +59,7 @@ import 'value_listenable_builder.dart'; ...@@ -59,7 +59,7 @@ import 'value_listenable_builder.dart';
/// ///
/// ## Example Code /// ## Example Code
/// ///
/// {@tool snippet --template=stateful_widget_scaffold} /// {@tool snippet --template=stateful_widget_scaffold_center}
/// This example shows an [IconButton] that "zooms" in when the widget first /// This example shows an [IconButton] that "zooms" in when the widget first
/// builds (its size smoothly increases from 0 to 24) and whenever the button /// builds (its size smoothly increases from 0 to 24) and whenever the button
/// is pressed, it smoothly changes its size to the new target value of either /// is pressed, it smoothly changes its size to the new target value of either
...@@ -70,24 +70,22 @@ import 'value_listenable_builder.dart'; ...@@ -70,24 +70,22 @@ import 'value_listenable_builder.dart';
/// ///
/// @override /// @override
/// Widget build(BuildContext context) { /// Widget build(BuildContext context) {
/// return Center( /// return TweenAnimationBuilder(
/// child: TweenAnimationBuilder( /// tween: Tween<double>(begin: 0, end: targetValue),
/// tween: Tween<double>(begin: 0, end: targetValue), /// duration: Duration(seconds: 1),
/// duration: Duration(seconds: 1), /// builder: (BuildContext context, double size, Widget child) {
/// builder: (BuildContext context, double size, Widget child) { /// return IconButton(
/// return IconButton( /// iconSize: size,
/// iconSize: size, /// color: Colors.blue,
/// color: Colors.blue, /// icon: child,
/// icon: child, /// onPressed: () {
/// onPressed: () { /// setState(() {
/// setState(() { /// targetValue = targetValue == 24.0 ? 48.0 : 24.0;
/// targetValue = targetValue == 24.0 ? 48.0 : 24.0; /// });
/// }); /// },
/// }, /// );
/// ); /// },
/// }, /// child: Icon(Icons.aspect_ratio),
/// child: Icon(Icons.aspect_ratio),
/// ),
/// ); /// );
/// } /// }
/// ``` /// ```
......
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