[cupertino_icons] Add glyph references for brightness and brightness_filled (#36174)

This commit is contained in:
Jason Simpson 2019-07-18 07:30:47 +10:00 committed by LongCatIsLooong
parent cc62b0838f
commit c60063b72d

View File

@ -922,4 +922,18 @@ class CupertinoIcons {
///
/// * [news], same shape, but not filled in.
static const IconData news_solid = IconData(0xf472, fontFamily: iconFont, fontPackage: iconFontPackage);
/// A outlined brightness icon.
///
/// See also:
///
/// * [brightness_solid], same shape, but filled in.
static const IconData brightness = IconData(0xf4B6, fontFamily: iconFont, fontPackage: iconFontPackage);
/// A filled in brightness icon.
///
/// See also:
///
/// * [brightness], same shape, but not filled in.
static const IconData brightness_solid = IconData(0xf4B7, fontFamily: iconFont, fontPackage: iconFontPackage);
}