Unverified Commit 204eceea authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Linking Higher & Lower Class Docs (#29758)

* Adding linking between higher and lower level classes in the API Docs. ref:#22859

* Fixed links between classes.
parent 164dae3b
...@@ -64,8 +64,8 @@ _ColorsAndStops _interpolateColorsAndStops( ...@@ -64,8 +64,8 @@ _ColorsAndStops _interpolateColorsAndStops(
/// ///
/// See also: /// See also:
/// ///
/// * [dart:ui.Gradient], the class in the [dart:ui] library that is /// * [Gradient](https://api.flutter.dev/flutter/dart-ui/Gradient-class.html), the class in the [dart:ui] library.
/// encapsulated by this class and its subclasses. ///
@immutable @immutable
abstract class Gradient { abstract class Gradient {
/// Initialize the gradient's colors and stops. /// Initialize the gradient's colors and stops.
......
...@@ -44,6 +44,10 @@ import 'text_style.dart'; ...@@ -44,6 +44,10 @@ import 'text_style.dart';
/// leading plus ascent. Each line's spacing below the baseline will be at least as /// leading plus ascent. Each line's spacing below the baseline will be at least as
/// tall as the half leading plus descent. /// tall as the half leading plus descent.
/// ///
/// See also:
///
/// * [StrutStyle](https://api.flutter.dev/flutter/dart-ui/StrutStyle-class.html), the class in the [dart:ui] library.
///
/// ### Fields and their default values. /// ### Fields and their default values.
// /////////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////////
......
...@@ -292,6 +292,8 @@ const String _kColorBackgroundWarning = 'Cannot provide both a backgroundColor a ...@@ -292,6 +292,8 @@ const String _kColorBackgroundWarning = 'Cannot provide both a backgroundColor a
/// * [RichText], the widget for showing a paragraph of mix-style text. /// * [RichText], the widget for showing a paragraph of mix-style text.
/// * [TextSpan], the class that wraps a [TextStyle] for the purposes of /// * [TextSpan], the class that wraps a [TextStyle] for the purposes of
/// passing it to a [RichText]. /// passing it to a [RichText].
/// * [TextStyle](https://api.flutter.dev/flutter/dart-ui/TextStyle-class.html), the class in the [dart:ui] library.
///
@immutable @immutable
class TextStyle extends Diagnosticable { class TextStyle extends Diagnosticable {
/// Creates a text style. /// Creates a text style.
......
...@@ -132,6 +132,8 @@ Future<void> precacheImage( ...@@ -132,6 +132,8 @@ Future<void> precacheImage(
/// * [new Ink.image], which is the preferred way to show an image in a /// * [new Ink.image], which is the preferred way to show an image in a
/// material application (especially if the image is in a [Material] and will /// material application (especially if the image is in a [Material] and will
/// have an [InkWell] on top of it). /// have an [InkWell] on top of it).
/// * [Image](https://api.flutter.dev/flutter/dart-ui/Image-class.html), the class in the [dart:ui] library.
///
class Image extends StatefulWidget { class Image extends StatefulWidget {
/// Creates a widget that displays an image. /// Creates a widget that displays an image.
/// ///
......
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