diff --git a/examples/flutter_gallery/lib/demo/animation/home.dart b/examples/flutter_gallery/lib/demo/animation/home.dart index f8e81709b0f..f660a2a959e 100644 --- a/examples/flutter_gallery/lib/demo/animation/home.dart +++ b/examples/flutter_gallery/lib/demo/animation/home.dart @@ -407,7 +407,7 @@ class _SnappingScrollPhysics extends ClampingScrollPhysics { return _toZeroScrollOffsetSimulation(offset, dragVelocity); } else { // The user ended the drag with little or no velocity. If they - // didn't leave the the offset above midScrollOffset, then + // didn't leave the offset above midScrollOffset, then // snap to midScrollOffset if they're more than halfway there, // otherwise snap to zero. final double snapThreshold = midScrollOffset / 2.0; diff --git a/packages/flutter/lib/src/gestures/velocity_tracker.dart b/packages/flutter/lib/src/gestures/velocity_tracker.dart index a02608444cc..93f45229b03 100644 --- a/packages/flutter/lib/src/gestures/velocity_tracker.dart +++ b/packages/flutter/lib/src/gestures/velocity_tracker.dart @@ -79,7 +79,7 @@ class Velocity { /// A two dimensional velocity estimate. /// /// VelocityEstimates are computed by [VelocityTracker.getVelocityEstimate]. An -/// estimate's [confidence] measures how well the the velocity tracker's position +/// estimate's [confidence] measures how well the velocity tracker's position /// data fit a straight line, [duration] is the time that elapsed between the /// first and last position sample used to compute the velocity, and [offset] /// is similarly the difference between the first and last positions. diff --git a/packages/flutter/lib/src/material/app_bar.dart b/packages/flutter/lib/src/material/app_bar.dart index 2fbd6386ed1..336811f7a3c 100644 --- a/packages/flutter/lib/src/material/app_bar.dart +++ b/packages/flutter/lib/src/material/app_bar.dart @@ -209,7 +209,7 @@ class AppBar extends StatefulWidget implements PreferredSizeWidget { final List actions; /// This widget is stacked behind the toolbar and the tabbar. It's height will - /// be the same as the the app bar's overall height. + /// be the same as the app bar's overall height. /// /// A flexible space isn't actually flexible unless the [AppBar]'s container /// changes the [AppBar]'s size. A [SliverAppBar] in a [CustomScrollView] @@ -795,7 +795,7 @@ class SliverAppBar extends StatefulWidget { final List actions; /// This widget is stacked behind the toolbar and the tabbar. It's height will - /// be the same as the the app bar's overall height. + /// be the same as the app bar's overall height. /// /// Typically a [FlexibleSpaceBar]. See [FlexibleSpaceBar] for details. final Widget flexibleSpace; diff --git a/packages/flutter/lib/src/material/button.dart b/packages/flutter/lib/src/material/button.dart index 8c2e41967ab..e1311423cd3 100644 --- a/packages/flutter/lib/src/material/button.dart +++ b/packages/flutter/lib/src/material/button.dart @@ -229,7 +229,7 @@ class MaterialButton extends StatelessWidget { /// The color to use for this button's text. final Color textColor; - /// The the button's fill color, displayed by its [Material], while the button + /// The button's fill color, displayed by its [Material], while the button /// is in its default (unpressed, enabled) state. /// /// Defaults to null, meaning that the color is automatically derived from the [Theme]. diff --git a/packages/flutter/lib/src/material/tabs.dart b/packages/flutter/lib/src/material/tabs.dart index 03a0a04e2f0..a9ea649b4cf 100644 --- a/packages/flutter/lib/src/material/tabs.dart +++ b/packages/flutter/lib/src/material/tabs.dart @@ -446,7 +446,7 @@ class _DragAnimation extends Animation with AnimationWithParentMixin