From dd86f70f4a1059b1f8fa04fb82d8d17ae30e024b Mon Sep 17 00:00:00 2001 From: Jeff Scaturro Date: Tue, 29 Jan 2019 18:28:49 -0400 Subject: [PATCH] [cupertino_icons] add car, bus, train, paw, controller, and flask icons. (#26774) * [cupertino_icons] add car, bus, train, paw, controller, and flask icons. * [#26774] remove whitespace --- packages/flutter/lib/src/cupertino/icons.dart | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/packages/flutter/lib/src/cupertino/icons.dart b/packages/flutter/lib/src/cupertino/icons.dart index 6bb0f88443..d8880d0a44 100644 --- a/packages/flutter/lib/src/cupertino/icons.dart +++ b/packages/flutter/lib/src/cupertino/icons.dart @@ -761,4 +761,77 @@ class CupertinoIcons { /// /// * [tag_solid], similar but with only one tag. static const IconData tags_solid = IconData(0xf48f, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in bus. + static const IconData bus = IconData(0xf36d, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in car. + /// + /// See also: + /// + /// * [car_detailed], similar, but a more detailed and realistic representation. + static const IconData car = IconData(0xf36f, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in detailed, realistic car. + /// + /// See also: + /// + /// * [car], similar, but a more simple representation. + static const IconData car_detailed = IconData(0xf2c1, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in train with a window divided in half and two headlights. + /// + /// See also: + /// + /// * [train_style_two], similar, but with a full, undivided window and a single, centered headlight. + static const IconData train_style_one = IconData(0xf3af, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in train with a window and a single, centered headlight. + /// + /// See also: + /// + /// * [train_style_one], similar, but with a with a window divided in half and two headlights. + static const IconData train_style_two = IconData(0xf3b4, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// An outlined paw. + /// + /// See also: + /// + /// * [paw_solid], similar, but filled in. + static const IconData paw = IconData(0xf479, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in paw. + /// + /// See also: + /// + /// * [paw], similar, but not filled in. + static const IconData paw_solid = IconData(0xf47a, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// An outlined game controller. + /// + /// See also: + /// + /// * [game_controller_solid], similar, but filled in. + static const IconData game_controller = IconData(0xf43a, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in game controller. + /// + /// See also: + /// + /// * [game_controller], similar, but not filled in. + static const IconData game_controller_solid = IconData(0xf43b, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// An outlined lab flask. + /// + /// See also: + /// + /// * [lab_flask_solid], similar, but filled in. + static const IconData lab_flask = IconData(0xf430, fontFamily: iconFont, fontPackage: iconFontPackage); + + /// A filled in lab flask. + /// + /// See also: + /// + /// * [lab_flask], similar, but not filled in. + static const IconData lab_flask_solid = IconData(0xf431, fontFamily: iconFont, fontPackage: iconFontPackage); }