From c831d09579b46e61a4b36a795456bc98764cf0e2 Mon Sep 17 00:00:00 2001 From: Seth Ladd Date: Wed, 22 Mar 2017 11:17:16 -0700 Subject: [PATCH] link from Color to Colors (#3494) * link from Color to Colors * from review --- lib/ui/painting.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/ui/painting.dart b/lib/ui/painting.dart index e2c69dadb..f02477994 100644 --- a/lib/ui/painting.dart +++ b/lib/ui/painting.dart @@ -33,6 +33,11 @@ Color _scaleAlpha(Color a, double factor) { /// Color c1 = const Color(0xFFFFFF); // fully transparent white (invisible) /// Color c2 = const Color(0xFFFFFFFF); // fully opaque white (visible) /// ``` +/// +/// See also: +/// +/// * [Colors](https://docs.flutter.io/flutter/material/Colors-class.html), which +/// defines the colors found in the Material Design specification. class Color { /// Construct a color from the lower 32 bits of an [int]. /// -- GitLab