From 89044a0e9ebf5f3bf6a538ef7001a1d2e6d6bd38 Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Wed, 3 May 2017 09:20:47 -0700 Subject: [PATCH] Link to the widget catalog from the dartdocs (#9743) Fixes https://github.com/flutter/flutter/issues/7988 --- packages/flutter/lib/material.dart | 9 ++++++--- packages/flutter/lib/widgets.dart | 5 +++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/flutter/lib/material.dart b/packages/flutter/lib/material.dart index cd4c2f73a2..ecceffd8ce 100644 --- a/packages/flutter/lib/material.dart +++ b/packages/flutter/lib/material.dart @@ -6,9 +6,12 @@ /// /// To use, import `package:flutter/material.dart`. /// -/// See -/// [material.google.com](https://material.google.com/) -/// for an introduction to Material Design. +/// See also: +/// +/// * [flutter.io/widgets](https://flutter.io/widgets/) +/// for a catalog of commonly-used Flutter widgets. +/// * [material.google.com](https://material.google.com/) +/// for an introduction to Material Design. library material; export 'src/material/about.dart'; diff --git a/packages/flutter/lib/widgets.dart b/packages/flutter/lib/widgets.dart index cf75d3e3d9..76856ff7af 100644 --- a/packages/flutter/lib/widgets.dart +++ b/packages/flutter/lib/widgets.dart @@ -5,6 +5,11 @@ /// The Flutter widgets framework. /// /// To use, import `package:flutter/widgets.dart`. +/// +/// See also: +/// +/// * [flutter.io/widgets](https://flutter.io/widgets/) +/// for a catalog of commonly-used Flutter widgets. library widgets; export 'package:vector_math/vector_math_64.dart' show Matrix4;