Unverified Commit 323373d3 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Add blank newline after Dartdoc bulleted list. (#33403)

This also fixes up some indentation in some
bulleted lists.

https://github.com/dart-lang/dartdoc/issues/1969
parent ddef473e
...@@ -117,7 +117,9 @@ class CupertinoSwitch extends StatefulWidget { ...@@ -117,7 +117,9 @@ class CupertinoSwitch extends StatefulWidget {
/// ///
/// See also: /// See also:
/// ///
/// * [DragGestureRecognizer.dragStartBehavior], which gives an example for the different behaviors. /// * [DragGestureRecognizer.dragStartBehavior], which gives an example for
/// the different behaviors.
///
/// {@endtemplate} /// {@endtemplate}
final DragStartBehavior dragStartBehavior; final DragStartBehavior dragStartBehavior;
......
...@@ -217,7 +217,9 @@ class DrawerController extends StatefulWidget { ...@@ -217,7 +217,9 @@ class DrawerController extends StatefulWidget {
/// ///
/// See also: /// See also:
/// ///
/// * [DragGestureRecognizer.dragStartBehavior], which gives an example for the different behaviors. /// * [DragGestureRecognizer.dragStartBehavior], which gives an example for
/// the different behaviors.
///
/// {@endtemplate} /// {@endtemplate}
final DragStartBehavior dragStartBehavior; final DragStartBehavior dragStartBehavior;
......
...@@ -374,6 +374,7 @@ class WidgetsApp extends StatefulWidget { ...@@ -374,6 +374,7 @@ class WidgetsApp extends StatefulWidget {
/// * [Navigator.initialRoute], which is used to implement this property. /// * [Navigator.initialRoute], which is used to implement this property.
/// * [Navigator.push], for pushing additional routes. /// * [Navigator.push], for pushing additional routes.
/// * [Navigator.pop], for removing a route from the stack. /// * [Navigator.pop], for removing a route from the stack.
///
/// {@endtemplate} /// {@endtemplate}
final String initialRoute; final String initialRoute;
......
...@@ -422,6 +422,7 @@ class EditableText extends StatefulWidget { ...@@ -422,6 +422,7 @@ class EditableText extends StatefulWidget {
/// See also: /// See also:
/// ///
/// * {@macro flutter.gestures.monodrag.dragStartExample} /// * {@macro flutter.gestures.monodrag.dragStartExample}
///
/// {@endtemplate} /// {@endtemplate}
final TextDirection textDirection; final TextDirection textDirection;
...@@ -437,6 +438,7 @@ class EditableText extends StatefulWidget { ...@@ -437,6 +438,7 @@ class EditableText extends StatefulWidget {
/// See also: /// See also:
/// ///
/// * [TextCapitalization], for a description of each capitalization behavior. /// * [TextCapitalization], for a description of each capitalization behavior.
///
/// {@endtemplate} /// {@endtemplate}
final TextCapitalization textCapitalization; final TextCapitalization textCapitalization;
......
...@@ -998,6 +998,7 @@ abstract class State<T extends StatefulWidget> extends Diagnosticable { ...@@ -998,6 +998,7 @@ abstract class State<T extends StatefulWidget> extends Diagnosticable {
/// to the new one if the updated widget configuration requires /// to the new one if the updated widget configuration requires
/// replacing the object. /// replacing the object.
/// * In [dispose], unsubscribe from the object. /// * In [dispose], unsubscribe from the object.
///
/// {@endtemplate} /// {@endtemplate}
/// ///
/// You cannot use [BuildContext.inheritFromWidgetOfExactType] from this /// You cannot use [BuildContext.inheritFromWidgetOfExactType] from this
......
...@@ -199,7 +199,9 @@ class Scrollable extends StatefulWidget { ...@@ -199,7 +199,9 @@ class Scrollable extends StatefulWidget {
/// ///
/// See also: /// See also:
/// ///
/// * [DragGestureRecognizer.dragStartBehavior], which gives an example for the different behaviors. /// * [DragGestureRecognizer.dragStartBehavior], which gives an example for
/// the different behaviors.
///
/// {@endtemplate} /// {@endtemplate}
final DragStartBehavior dragStartBehavior; final DragStartBehavior dragStartBehavior;
......
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