Searched full:material (Results 1 – 25 of 1239) sorted by relevance
12345678910>>...50
| /third_party/flutter/flutter/packages/flutter/lib/ |
| D | material.dart | 5 /// Flutter widgets implementing Material Design. 7 /// To use, import `package:flutter/material.dart`. 15 /// * [material.io/design](https://material.io/design/) 16 /// for an introduction to Material Design. 17 library material; 19 export 'src/material/about.dart'; 20 export 'src/material/animated_icons.dart'; 21 export 'src/material/app.dart'; 22 export 'src/material/app_bar.dart'; 23 export 'src/material/app_bar_theme.dart'; [all …]
|
| /third_party/flutter/flutter/packages/flutter/lib/src/material/ |
| D | icons.dart | 7 /// Identifiers for the supported material design icons. 13 /// To use this class, make sure you set `uses-material-design: true` in your 21 /// uses-material-design: true 65 // See https://github.com/flutter/flutter/wiki/Updating-Material-Design-Fonts 68 /// <i class="material-icons md-36">360</i> — material icon named "360". 71 /// <i class="material-icons md-36">3d_rotation</i> — material icon named "3d rotation". 74 /// <i class="material-icons md-36">4k</i> — material icon named "4k". 77 /// <i class="material-icons md-36">ac_unit</i> — material icon named "ac unit". 80 /// <i class="material-icons md-36">access_alarm</i> — material icon named "access alarm". 83 …/// <i class="material-icons md-36">access_alarms</i> — material icon named "access alarms". [all …]
|
| D | colors.dart | 17 /// * [Colors], which defines all of the standard material colors. 68 /// * [Colors], which defines all of the standard material colors. 69 /// * <https://material.io/go/design-theming#color-color-schemes> 91 /// [Color] and [ColorSwatch] constants which represent Material design's 92 /// [color palette](https://material.io/design/color/). 129 ///  130 ///  132 ///  133 ///  135 ///  [all …]
|
| D | material.dart | 19 /// The various kinds of material in material design. Used to 20 /// configure the default behavior of [Material] widgets. 24 /// * [Material], in particular [Material.type]. 39 /// A transparent piece of material that draws ink splashes and highlights. 41 /// While the material metaphor describes child widgets as printed on the 42 /// material itself and do not hide ink effects, in practice the [Material] 44 /// A [Material] with type transparency can be placed on top of opaque widgets 52 /// The border radii used by the various kinds of material in material design. 57 /// * [Material] 66 /// An interface for creating [InkSplash]s and [InkHighlight]s on a material. [all …]
|
| D | debug.dart | 7 import 'material.dart'; 11 /// Asserts that the given context has a [Material] ancestor. 13 /// Used by many material design widgets to make sure that they are 14 /// only used in contexts where they can print ink onto some material. 26 if (context.widget is! Material && context.ancestorWidgetOfExactType(Material) == null) { 28 message.writeln('No Material widget found.'); 30 '${context.widget.runtimeType} widgets require a Material ' 34 'In material design, most widgets are conceptually "printed" on ' 35 'a sheet of material. In Flutter\'s material library, that ' 36 'material is represented by the Material widget. It is the ' [all …]
|
| D | ink_decoration.dart | 9 import 'material.dart'; 11 /// A convenience widget for drawing images and other decorations on [Material] 15 /// draw on the actual underlying [Material], under whatever widgets are drawn 16 /// over the material (such as [Text] and [Icon]s). If an opaque image is drawn 17 /// over the [Material] (maybe using a [Container] or [DecoratedBox]), these ink 19 /// graphics drawn above the [Material]. 21 /// This widget draws the given [Decoration] directly on the [Material], in the 25 /// An alternative solution is to use a [MaterialType.transparency] material 27 /// [InkResponse]s will be drawn on the transparent material on top of the 29 /// [Material]. [all …]
|
| D | ink_well.dart | 15 import 'material.dart'; 48 /// Typically causes the ink to propagate faster across the material. By default this 103 /// An area of a [Material] that responds to touch. Has a configurable shape and 132 …the child widget.](https://flutter.github.io/assets-for-api-docs/assets/material/ink_response_larg… 136 …red on the child.](https://flutter.github.io/assets-for-api-docs/assets/material/ink_response_smal… 145 …e the size of the box.](https://flutter.github.io/assets-for-api-docs/assets/material/ink_well.png) 147 /// The [InkResponse] widget must have a [Material] widget as an ancestor. The 148 /// [Material] widget is where the ink reactions are actually painted. This 149 /// matches the material design premise wherein the [Material] is what is 164 /// [DecoratedBox], between the [Material] widget and the [InkResponse] widget, [all …]
|
| D | slider_theme.dart | 16 /// {@template flutter.material.slider.seeAlso.sliderComponentShape} 22 /// {@template flutter.material.slider.seeAlso.sliderTrackShape} 27 /// {@template flutter.material.slider.seeAlso.sliderTickMarkShape} 32 /// {@template flutter.material.slider.seeAlso.rangeSliderThumbShape} 37 /// {@template flutter.material.slider.seeAlso.rangeSliderValueIndicatorShape} 42 /// {@template flutter.material.slider.seeAlso.rangeSliderTrackShape} 47 /// {@template flutter.material.slider.seeAlso.rangeSliderTickMarkShape} 52 /// {@template flutter.material.slider.seeAlso.roundSliderThumbShape} 57 /// {@template flutter.material.slider.seeAlso.roundSliderOverlayShape} 62 /// {@template flutter.material.slider.seeAlso.paddleSliderValueIndicatorShape} [all …]
|
| D | expand_icon.dart | 28 /// * https://material.io/design/iconography/system-icons.html 75 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons… 76 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application) 85 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons… 86 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application) 94 …/// Material Design specifications for [icons](https://material.io/design/iconography/system-icons… 95 /// and for [dark theme](https://material.io/design/color/dark-theme.html#ui-application) 145 …/// [Material Design system icon specifications](https://material.io/design/iconography/system-ico… 147 …/// [Material Design dark theme specifications](https://material.io/design/color/dark-theme.html#u…
|
| /third_party/flutter/flutter/packages/flutter/test/material/ |
| D | buttons_test.dart | 6 import 'package:flutter/material.dart'; 22 matching: find.byType(Material), 35 Material material = tester.widget<Material>(rawButtonMaterial); 36 expect(material.animationDuration, const Duration(milliseconds: 200)); 37 expect(material.borderOnForeground, true); 38 expect(material.borderRadius, null); 39 expect(material.clipBehavior, Clip.none); 40 expect(material.color, null); 41 expect(material.elevation, 2.0); 42 expect(material.shadowColor, const Color(0xff000000)); [all …]
|
| D | card_theme_test.dart | 5 import 'package:flutter/material.dart'; 23 final Material material = _getCardMaterial(tester); 25 expect(material.clipBehavior, Clip.none); 26 expect(material.color, Colors.white); 27 expect(material.elevation, 1.0); 29 expect(material.shape, const RoundedRectangleBorder( 45 final Material material = _getCardMaterial(tester); 47 expect(material.clipBehavior, cardTheme.clipBehavior); 48 expect(material.color, cardTheme.color); 49 expect(material.elevation, cardTheme.elevation); [all …]
|
| D | bottom_sheet_theme_test.dart | 5 import 'package:flutter/material.dart'; 66 final Material material = tester.widget<Material>( 69 matching: find.byType(Material), 72 expect(material.color, null); 73 expect(material.elevation, 0.0); 74 expect(material.shape, null); 92 final Material material = tester.widget<Material>( 95 matching: find.byType(Material), 98 expect(material.color, bottomSheetTheme.backgroundColor); 99 expect(material.elevation, bottomSheetTheme.elevation); [all …]
|
| D | popup_menu_theme_test.dart | 5 import 'package:flutter/material.dart'; 76 home: Material( 98 /// The last Material widget under popupButtonApp is the [PopupMenuButton] 100 /// that is of type Material, this code retrieves the built 102 final Material button = tester.widget<Material>( 105 matching: find.byType(Material), 135 home: Material( 157 /// The last Material widget under popupButtonApp is the [PopupMenuButton] 159 /// that is of type Material, this code retrieves the built 161 final Material button = tester.widget<Material>( [all …]
|
| D | toggle_buttons_test.dart | 6 import 'package:flutter/material.dart'; 24 Material( 57 Material( 125 Material( 184 Material( 206 Material( 232 Material( 258 Material( 294 Material( 321 Material( [all …]
|
| D | material_test.dart | 5 import 'package:flutter/material.dart'; 30 child: Material( 67 testWidgets('default Material debugFillProperties', (WidgetTester tester) async { 69 const Material().debugFillProperties(builder); 79 testWidgets('Material implements debugFillProperties', (WidgetTester tester) async { 81 const Material( 104 Material( 126 child: Material( 156 // to test repainting both inside and outside the Material widget. 293 Material( [all …]
|
| D | snack_bar_theme_test.dart | 5 import 'package:flutter/material.dart'; 91 final Material material = _getSnackBarMaterial(tester); 95 expect(material.color, const Color(0xFF333333)); 96 expect(material.elevation, 6.0); 97 expect(material.shape, null); 128 final Material material = _getSnackBarMaterial(tester); 133 expect(material.color, snackBarTheme.backgroundColor); 134 expect(material.elevation, snackBarTheme.elevation); 135 expect(material.shape, snackBarTheme.shape); 178 final Material material = _getSnackBarMaterial(tester); [all …]
|
| /third_party/libuv/ |
| D | LICENSE-docs | 10 warranties regarding its licenses, any material licensed under their 19 original works of authorship and other material subject to copyright 26 permission to use material in ways otherwise restricted by 32 material as expected. Licensors should clearly mark any 33 material not subject to the license. This includes other CC- 34 licensed material, or material used under an exception or 40 licensed material under specified terms and conditions. If 46 the licensed material may still be restricted for other 48 rights in the material. A licensor may make special requests, 66 Licensed Material available under these terms and conditions. [all …]
|
| /third_party/flutter/flutter/packages/flutter/lib/src/material/animated_icons/ |
| D | animated_icons_data.dart | 13 /// Identifier for the supported material design animated icons. 18 /// The material design add to event icon animation. 21 /// The material design arrow to menu icon animation. 24 /// The material design close to menu icon animation. 27 /// The material design ellipsis to search icon animation. 30 /// The material design event to add icon animation. 33 /// The material design home to menu icon animation. 36 /// The material design list to view icon animation. 39 /// The material design menu to arrow icon animation. 42 /// The material design menu to close icon animation. [all …]
|
| /third_party/flutter/flutter/packages/flutter/test/widgets/ |
| D | physical_model_test.dart | 7 import 'package:flutter/material.dart'; 67 child: Material(child: TextField(controller: TextEditingController())), 96 Material(child: Text('A long long long long long long long string')), 97 Material(child: Text('A long long long long long long long string')), 98 Material(child: Text('A long long long long long long long string')), 99 Material(child: Text('A long long long long long long long string')), 166 child: const Material( 169 child: Material( 178 expect(find.byType(Material), findsNWidgets(2)); 194 child: const Material( [all …]
|
| D | navigator_replacement_test.dart | 6 import 'package:flutter/material.dart'; 13 home: const Material(child: Text('home')), 15 '/a': (BuildContext context) => const Material(child: Text('a')), 16 '/b': (BuildContext context) => const Material(child: Text('b')), 48 home: const Material(child: Text('home')), 50 '/a': (BuildContext context) => const Material(child: Text('a')), 51 '/b': (BuildContext context) => const Material(child: Text('b')), 115 home: const Material(child: Text('home')), 117 '/a': (BuildContext context) => const Material(child: Text('a')), 118 '/b': (BuildContext context) => const Material(child: Text('b')), [all …]
|
| /third_party/flutter/flutter/dev/docs/ |
| D | styles.html | 4 @import 'https://fonts.googleapis.com/css?family=Material+Icons'; 9 <!-- The following rules are from http://google.github.io/material-design-icons/ --> 10 <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> 13 .material-icons.md-18 { font-size: 18px; } 14 .material-icons.md-24 { font-size: 24px; } 15 .material-icons.md-36 { font-size: 36px; } 16 .material-icons.md-48 { font-size: 48px; } 19 .material-icons.md-dark { color: rgba(0, 0, 0, 0.54); } 20 .material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); } 23 .material-icons.md-light { color: rgba(255, 255, 255, 1); } [all …]
|
| /third_party/flutter/skia/third_party/externals/opencl-lib/3-0/include/CL/internal/ |
| D | cl_kernel_info_amd.h | 5 Redistribution and use of this material is permitted under the following 11 In no event shall anyone redistributing or accessing or using this material 13 material against Advanced Micro Devices, Inc. or any copyright holders or 15 this license or any agreement or access or use related to this material. 18 OF ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS MATERIAL. 20 THIS MATERIAL IS PROVIDED BY ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT 33 ARISING IN ANY WAY RELATED TO THIS MATERIAL, EVEN IF ADVISED OF THE POSSIBILITY 36 (US $10.00). ANYONE REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL ACCEPTS 44 THIS MATERIAL SHALL TERMINATE IMMEDIATELY. MOREOVER, THE FOREGOING SHALL 46 ACCESS OR USE RELATED TO THIS MATERIAL. [all …]
|
| D | cl_profile_amd.h | 5 Redistribution and use of this material is permitted under the following 11 In no event shall anyone redistributing or accessing or using this material 13 material against Advanced Micro Devices, Inc. or any copyright holders or 15 this license or any agreement or access or use related to this material. 18 OF ALL RIGHTS TO REDISTRIBUTE, ACCESS OR USE THIS MATERIAL. 20 THIS MATERIAL IS PROVIDED BY ADVANCED MICRO DEVICES, INC. AND ANY COPYRIGHT 33 ARISING IN ANY WAY RELATED TO THIS MATERIAL, EVEN IF ADVISED OF THE POSSIBILITY 36 (US $10.00). ANYONE REDISTRIBUTING OR ACCESSING OR USING THIS MATERIAL ACCEPTS 44 THIS MATERIAL SHALL TERMINATE IMMEDIATELY. MOREOVER, THE FOREGOING SHALL 46 ACCESS OR USE RELATED TO THIS MATERIAL. [all …]
|
| /third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/ |
| D | demos.dart | 5 import 'package:flutter/material.dart'; 49 name: 'Material', 153 // Material Components 168 documentationUrl: 'https://api.flutter.dev/flutter/material/MaterialBanner-class.html', 177 documentationUrl: 'https://docs.flutter.io/flutter/material/BottomAppBar-class.html', 186 documentationUrl: 'https://docs.flutter.io/flutter/material/BottomNavigationBar-class.html', 195 documentationUrl: 'https://docs.flutter.io/flutter/material/showModalBottomSheet.html', 204 … documentationUrl: 'https://docs.flutter.io/flutter/material/ScaffoldState/showBottomSheet.html', 221 documentationUrl: 'https://docs.flutter.io/flutter/material/FloatingActionButton-class.html', 230 documentationUrl: 'https://docs.flutter.io/flutter/material/Card-class.html', [all …]
|
| /third_party/flutter/flutter/packages/flutter/test/cupertino/ |
| D | README.md | 3 Avoid importing the Material 'package:flutter/material.dart' in these tests as 6 The 'material' subdirectory contains tests for cross-interactions of Material 9 Some tests may also be replicated in the Material tests when Material reuses
|
12345678910>>...50