/// This example shows how to create a [MaterialApp] that disables the "debug"
/// banner with a [home] route that will be displayed when the app is launched.
///
/// 
/// 
///
/// ```dart
/// MaterialApp(
...
...
@@ -125,7 +125,7 @@ enum ThemeMode {
/// This example shows how to create a [MaterialApp] that defines a [theme] that
/// will be used for material widgets in the app.
///
/// 
/// 
/// This example shows how to make a simple [FloatingActionButton] in a
/// This example shows how to display a [FloatingActionButton] in a
/// [Scaffold], with a pink [backgroundColor] and a thumbs up [Icon].
///
/// 
/// This example shows how to make an extended [FloatingActionButton] in a
/// [Scaffold], with a pink [backgroundColor], a thumbs up [Icon] and a
/// [Text] label.
/// [Text] label that reads "Approve".
///
/// 
@@ -811,7 +811,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// within the [Scaffold]. The [FloatingActionButton] is connected to a
/// callback that increments a counter.
///
/// 
/// 
///
/// ```dart
/// int _count = 0;
...
...
@@ -835,12 +835,12 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// This example shows a [Scaffold] with a [backgroundColor], [body] and
/// [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in order
/// to center the text within the [Scaffold]. The [FloatingActionButton] is
/// connected to a callback that increments a counter.
/// This example shows a [Scaffold] with a blueGrey [backgroundColor], [body]
/// and [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in
/// order to center the text within the [Scaffold]. The [FloatingActionButton]
/// is connected to a callback that increments a counter.
///
/// 
@@ -872,7 +872,7 @@ class _FloatingActionButtonTransitionState extends State<_FloatingActionButtonTr
/// [FloatingActionButtonLocation.centerDocked]. The [FloatingActionButton] is
/// connected to a callback that increments a counter.
///
/// 
/// Creates a [TextFormField] with an [InputDecoration] and validator function.
///
/// 
///
/// 
/// 
/// 
///
/// ```dart
/// RichText(
...
...
@@ -102,7 +102,7 @@ const String _kColorBackgroundWarning = 'Cannot provide both a backgroundColor a
/// In this example, the ambient [DefaultTextStyle] is explicitly manipulated to
/// obtain a [TextStyle] that doubles the default font size.
///
/// 
/// 
///
/// ```dart
/// Text(
...
...
@@ -147,13 +147,13 @@ const String _kColorBackgroundWarning = 'Cannot provide both a backgroundColor a
/// ### Wavy red underline with black text
///
/// {@tool sample}
/// Styles can be combined. In this example, the misspelt word is drawn in black
/// text and underlined with a wavy red line to indicate a spelling error. (The
/// remainder is styled according to the Flutter default text styles, not the
/// ambient [DefaultTextStyle], since no explicit style is given and [RichText]
/// does not automatically use the ambient [DefaultTextStyle].)
/// Styles can be combined. In this example, the misspelled word is drawn in
/// black text and underlined with a wavy red line to indicate a spelling error.
/// (The remainder is styled according to the Flutter default text styles, not
/// the ambient [DefaultTextStyle], since no explicit style is given and
/// [RichText] does not automatically use the ambient [DefaultTextStyle].)
///
/// 
@@ -3088,7 +3092,7 @@ class ListBody extends MultiChildRenderObjectWidget {
///
/// Using a [Stack] you can position widgets over one another.
///
/// 
/// 
///
/// ```dart
/// Stack(
...
...
@@ -3118,7 +3122,7 @@ class ListBody extends MultiChildRenderObjectWidget {
/// This example shows how [Stack] can be used to enhance text visibility
/// by adding gradient backdrops.
///
/// 
/// 
///
/// ```dart
/// SizedBox(
...
...
@@ -3951,7 +3955,7 @@ class Flex extends MultiChildRenderObjectWidget {
/// places text centered in the first two cells and the Flutter logo centered in
/// the third:
///
/// 
/// This example uses a [Column] to arrange three widgets vertically, the last
/// being made to fill all the remaining space.
///
/// 
/// 
///
/// ```dart
/// Column(
...
...
@@ -4165,7 +4169,7 @@ class Row extends Flex {
/// [mainAxisSize] is set to [MainAxisSize.min], so that the column shrinks to
/// fit the children.
///
/// 
@@ -4416,7 +4420,7 @@ class Flexible extends ParentDataWidget<Flex> {
/// This example shows how to use an [Expanded] widget in a [Column] so that
/// it's middle child, a [Container] here, expands to fill the space.
///
/// 
/// 
///
/// ```dart
/// Widget build(BuildContext context) {
...
...
@@ -4455,7 +4459,7 @@ class Flexible extends ParentDataWidget<Flex> {
/// This example shows how to use an [Expanded] widget in a [Row] with multiple
/// children expanded, utilizing the [flex] factor to prioritize available space.
///
/// 
/// 
@@ -1290,7 +1290,7 @@ class ListView extends BoxScrollView {
/// children are spaced apart using the [crossAxisSpacing] and [mainAxisSpacing]
/// properties.
///
/// 
/// 
///
/// ```dart
/// GridView.count(
...
...
@@ -1339,7 +1339,7 @@ class ListView extends BoxScrollView {
/// This example shows how to create the same grid as the previous example
/// using a [CustomScrollView] and a [SliverGrid].
///
/// 
/// 
@@ -204,12 +204,12 @@ class DefaultTextStyle extends InheritedTheme {
///
/// {@tool sample}
///
/// This example shows how to display text using the [Text] widget. If the text
/// overflows, it truncates the text with an ellipsis.
/// This example shows how to display text using the [Text] widget with the
/// [overflow] set to [TextOverflow.ellipsis].
///
/// 
/// 
///
/// 
/// 
///
/// ```dart
/// Text(
...
...
@@ -228,7 +228,7 @@ class DefaultTextStyle extends InheritedTheme {
///
/// {@tool sample}
///
/// 
/// 