Home
last modified time | relevance | path

Searched full:widgets (Results 1 – 25 of 813) sorted by relevance

12345678910>>...33

/third_party/flutter/flutter/packages/flutter/lib/
Dwidgets.dart5 /// The Flutter widgets framework.
7 /// To use, import `package:flutter/widgets.dart`.
11 /// * [flutter.dev/widgets](https://flutter.dev/widgets/)
12 /// for a catalog of commonly-used Flutter widgets.
13 library widgets;
17 export 'src/widgets/actions.dart';
18 export 'src/widgets/animated_cross_fade.dart';
19 export 'src/widgets/animated_list.dart';
20 export 'src/widgets/animated_size.dart';
21 export 'src/widgets/animated_switcher.dart';
[all …]
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dcompilation_trace.txt4847 package:flutter/src/widgets/app.dart,WidgetsApp,get:builder
4848 package:flutter/src/widgets/app.dart,WidgetsApp,get:localizationsDelegates
4849 package:flutter/src/widgets/app.dart,WidgetsApp,get:pageRouteBuilder
4850 package:flutter/src/widgets/basic.dart,Align,Align.
4851 package:flutter/src/widgets/basic.dart,Align,createRenderObject
4852 package:flutter/src/widgets/basic.dart,Align,get:alignment
4853 package:flutter/src/widgets/basic.dart,Align,get:heightFactor
4854 package:flutter/src/widgets/basic.dart,Align,get:widthFactor
4855 package:flutter/src/widgets/basic.dart,BackdropFilter,BackdropFilter.
4856 package:flutter/src/widgets/basic.dart,BackdropFilter,get:filter
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dapp.dart6 import 'package:flutter/widgets.dart';
17 /// A convenience widget that wraps a number of widgets that are commonly
103 /// {@macro flutter.widgets.widgetsApp.navigatorKey}
106 /// {@macro flutter.widgets.widgetsApp.home}
122 /// {@macro flutter.widgets.widgetsApp.routes}
125 /// {@macro flutter.widgets.widgetsApp.initialRoute}
128 /// {@macro flutter.widgets.widgetsApp.onGenerateRoute}
131 /// {@macro flutter.widgets.widgetsApp.onUnknownRoute}
134 /// {@macro flutter.widgets.widgetsApp.navigatorObservers}
137 /// {@macro flutter.widgets.widgetsApp.builder}
[all …]
Dtext_field.dart7 import 'package:flutter/widgets.dart';
49 /// Used to toggle the visibility behavior of the optional decorating widgets
82 // widgets in front of it, tapping the clear button will also trigger
286 /// {@macro flutter.widgets.Focus.focusNode}
353 /// {@macro flutter.widgets.editableText.keyboardType}
362 /// {@macro flutter.widgets.editableText.textCapitalization}
372 /// {@macro flutter.widgets.editableText.strutStyle}
375 /// {@macro flutter.widgets.editableText.textAlign}
388 /// {@macro flutter.widgets.editableText.readOnly}
391 /// {@macro flutter.widgets.editableText.showCursor}
[all …]
Dtheme.dart7 import 'package:flutter/widgets.dart';
18 /// Applies a visual styling theme to descendant Cupertino widgets.
20 /// Affects the color and text styles of Cupertino widgets whose styling
21 /// are not overridden when constructing the respective widgets instances.
23 /// Descendant widgets can retrieve the current [CupertinoThemeData] by calling
37 /// Creates a [CupertinoTheme] to change descendant Cupertino widgets' styling.
53 /// Returns a default [CupertinoThemeData] if no [CupertinoTheme] widgets
62 /// {@macro flutter.widgets.child}
184 /// Text styles used by Cupertino widgets.
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dscroll_configuration.dart14 /// Describes how [Scrollable] widgets should behave.
16 /// Used by [ScrollConfiguration] to configure the [Scrollable] widgets in a
20 /// Creates a description of how [Scrollable] widgets should behave.
72 /// If this method returns true, all the widgets that inherit from the
81 /// Controls how [Scrollable] widgets behave in a subtree.
86 /// Creates a widget that controls how [Scrollable] widgets behave in a subtree.
95 /// How [Scrollable] widgets that are descendants of [child] should behave.
98 /// The [ScrollBehavior] for [Scrollable] widgets in the given [BuildContext].
Ddebug.dart16 /// Log the dirty widgets that are built each frame.
66 /// Log the call stacks that mark widgets as needing to be rebuilt.
79 /// Log when widgets with global keys are deactivated and log when they are
96 /// Show banners for deprecated widgets.
99 Key _firstNonUniqueKey(Iterable<Widget> widgets) {
101 for (Widget widget in widgets) {
180 '${context.widget.runtimeType} widgets require a Table widget ancestor.\n'
194 /// Used by various widgets to make sure that they are only used in an
211 '${context.widget.runtimeType} widgets require a MediaQuery widget ancestor.\n'
227 /// Used by various widgets to make sure that they are only used in an
[all …]
Dplatform_view.dart26 /// {@template flutter.widgets.platformViews.layout}
31 /// {@template flutter.widgets.platformViews.gestures}
50 /// {@template flutter.widgets.platformViews.lifetime}
61 /// {@template flutter.widgets.platformViews.constructorParams}
87 /// {@template flutter.widgets.platformViews.createdParam}
94 /// {@template flutter.widgets.platformViews.hittestParam}
101 /// {@template flutter.widgets.platformViews.directionParam}
110 /// {@template flutter.widgets.platformViews.gestureRecognizersDescHead}
153 /// {@template flutter.widgets.platformViews.gestureRecognizersDescFoot}
195 /// {@macro flutter.widgets.platformViews.layout}
[all …]
Dnotification_listener.dart24 /// widgets with the appropriate type parameters that are ancestors of the given
54 /// The notification will be delivered to any [NotificationListener] widgets
103 /// {@macro flutter.widgets.child}
122 /// widgets that depend on layout, consider a [LayoutBuilder] instead.
148 /// widgets with the appropriate type parameters that are ancestors of the given
151 /// In the widgets library, only the [SizeChangedLayoutNotifier] class and
157 /// either only use widgets that never change layout, or that notify their
Dframework.dart89 /// Widgets that have global keys reparent their subtrees when they are moved
99 /// You cannot simultaneously include two widgets in the tree with the same
168 ErrorSummary('Multiple widgets used the same GlobalKey.'),
170 'The key $this was used by multiple widgets. The parents of those widgets were:\n'
178 ErrorSummary('Multiple widgets used the same GlobalKey.'),
180 'The key $this was used by multiple widgets. The parents of those widgets were '
181 'different widgets that both had the following description:\n'
212 information.add(ErrorSummary('Multiple widgets used the same GlobalKey.'));
220 …ion.add(Element.describeElements('The key $key was used by ${elements.length} widgets', elements));
289 /// where independent widgets will reuse the same object as their
[all …]
Dnavigation_toolbar.dart13 /// [NavigationToolbar] is a layout helper to position 3 widgets or groups of
14 /// widgets along a horizontal axis that's sensible for an application's
17 /// The [leading] and [trailing] widgets occupy the edges of the widget with
102 // between the leading and trailing widgets.
104 // space between the leading and trailing widgets).
163 // widgets, then align its left or right edge with the adjacent boundary.
Dtransitions.dart23 /// [AnimatedWidget] is most useful for widgets that are otherwise stateless. To
94 /// ## Common animated widgets
96 /// A number of animated widgets ship with the framework. They are usually named
100 /// named `AnimatedFoo`. Commonly used animated widgets include:
133 /// Override this method to build widgets that depend on the state of the
195 /// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/slide_transiti…
248 /// {@macro flutter.widgets.child}
268 /// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/scale_transiti…
306 /// {@macro flutter.widgets.child}
326 /// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/rotation_trans…
[all …]
Dscroll_view.dart22 /// Scrollable widgets consist of three pieces:
28 /// of the widgets inside the scroll view.
29 /// 3. One or more slivers, which are widgets that can be composed to created
41 /// scrolling, linear list of child widgets.
42 /// * [PageView], which is a scrolling list of child widgets that are each the
45 /// of child widgets.
219 /// example [ListView] will use the number of widgets in the child list,
223 /// or list of widgets, the child count must be explicitly provided. If the
231 /// {@macro flutter.widgets.scrollable.dragStartBehavior}
250 /// Build the list of widgets to place inside the viewport.
[all …]
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dfinders.dart26 /// Finds [Text] and [EditableText] widgets containing string equal to the
39 /// Looks for widgets that contain a [Text] descendant with `text`
63 /// Finds widgets by searching for one with a particular [Key].
75 /// Finds widgets by searching for widgets with a particular type.
93 /// Finds [Icon] widgets containing icon data equal to the `icon`
106 /// Looks for widgets that contain an [Icon] descendant displaying [IconData]
130 /// Finds widgets by searching for elements with a particular type.
148 /// Finds widgets whose current widget is the instance given by the
167 /// Finds widgets using a widget [predicate].
189 /// Finds Tooltip widgets with the given message.
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Ddebug.dart5 import 'package:flutter/widgets.dart';
13 /// Used by many material design widgets to make sure that they are
30 '${context.widget.runtimeType} widgets require a Material '
34 'In material design, most widgets are conceptually "printed" on '
38 'Because of this, many material library widgets require that '
76 /// Used by many material design widgets to make sure that they are
93 '${context.widget.runtimeType} widgets require MaterialLocalizations '
134 /// Used by various widgets to make sure that they are only used in an
151 '${context.widget.runtimeType} widgets require a Scaffold widget ancestor.\n'
Dtheme.dart7 import 'package:flutter/widgets.dart';
18 /// Applies a theme to descendant widgets.
22 /// Descendant widgets obtain the current theme's [ThemeData] object using
49 /// Specifies the color and typography values for descendant widgets.
54 /// When an app uses the [Navigator] to push a route, the route's widgets
59 /// to the class that creates a route's widgets. Material widgets that push
65 /// {@macro flutter.widgets.child}
84 /// route's widgets with a [Theme], but only when the application's overall
204 /// {@animation 250 266 https://flutter.github.io/assets-for-api-docs/assets/widgets/animated_theme…
229 /// Specifies the color and typography values for descendant widgets.
[all …]
Dapp.dart9 import 'package:flutter/widgets.dart';
22 /// In Material Design, most [Text] widgets are contained in [Material] widgets,
52 /// A convenience widget that wraps a number of widgets that are commonly
126 /// will be used for material widgets in the app.
203 /// {@macro flutter.widgets.widgetsApp.navigatorKey}
206 /// {@macro flutter.widgets.widgetsApp.home}
216 /// {@macro flutter.widgets.widgetsApp.routes}
219 /// {@macro flutter.widgets.widgetsApp.initialRoute}
222 /// {@macro flutter.widgets.widgetsApp.onGenerateRoute}
225 /// {@macro flutter.widgets.widgetsApp.onUnknownRoute}
[all …]
Dtext_field.dart10 import 'package:flutter/widgets.dart';
167 /// To integrate the [TextField] into a [Form] with other [FormField] widgets,
375 /// {@macro flutter.widgets.editableText.keyboardType}
384 /// {@macro flutter.widgets.editableText.textCapitalization}
394 /// {@macro flutter.widgets.editableText.strutStyle}
397 /// {@macro flutter.widgets.editableText.textAlign}
403 /// {@macro flutter.widgets.editableText.textDirection}
406 /// {@macro flutter.widgets.editableText.autofocus}
409 /// {@macro flutter.widgets.editableText.obscureText}
412 /// {@macro flutter.widgets.editableText.autocorrect}
[all …]
/third_party/python/Doc/library/
Dtkinter.tix.rst1 :mod:`tkinter.tix` --- Extension widgets for Tk
5 :synopsis: Tk Extension Widgets for Tkinter
20 rich set of widgets. Although the standard Tk library has many useful widgets,
22 commonly needed widgets that are missing from standard Tk: :class:`HList`,
24 scrollable widgets.
25 :mod:`tkinter.tix` also includes many more widgets that are generally useful in
29 With all these new widgets, you can introduce new interaction techniques into
31 design your application by choosing the most appropriate widgets to match the
71 To use :mod:`tkinter.tix`, you must have the Tix widgets installed, usually
72 alongside your installation of the Tk widgets. To test your installation, try
[all …]
Dtkinter.rst32 Extensive tutorial plus friendlier widget pages for some of the widgets.
247 for subclassing to make "real" widgets (in C++, this is called an 'abstract
270 enforce this, widgets in Tk are named with *pathnames*, just like files in a
342 various forms of the pack command are implemented as methods. All widgets in
369 Tk Widgets (C and Tcl)
372 The Tcl part of the Tk widgets is used to bind certain default behaviors to
373 widgets, and is executed once at the point where the Python :mod:`tkinter`
377 The Tk part of the Tk Widgets implement the final mapping to ...
416 widgets, the latter are the options that are idiosyncratic to that particular
421 document. Some options don't apply to some kinds of widgets. Whether a given
[all …]
/third_party/boost/libs/uuid/test/
Dtest_name_generator.cpp52 uuid u = gen("www.widgets.com"); in main()
58 u = gen(std::string("www.widgets.com")); in main()
67 u = gen(L"www.widgets.com"); in main()
72 u = gen(std::wstring(L"www.widgets.com")); in main()
77 char name[] = "www.widgets.com"; in main()
84 uuid u3 = other("www.widgets.com"); in main()
96 uuid u4 = other2("www.widgets.com"); in main()
101 uuid md = mdgen("www.widgets.com"); in main()
109 uuid latest = latestgen("www.widgets.com"); in main()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dparent_data_test.dart7 import 'package:flutter/widgets.dart';
275 'Positioned widgets must be placed directly inside Stack widgets.\n'
276 …pth, left: 7.0, top: 6.0, dirty) has a Stack ancestor, but there are other widgets between them:\n'
278 'These widgets cannot come between a Positioned and its Stack.\n'
307 'Positioned widgets must be placed inside Stack widgets.\n'
399 'Expanded widgets must be placed directly inside Flex widgets.\n'
400 …'Expanded(no depth, flex: 1, dirty) has a Flex ancestor, but there are other widgets between them:…
402 'These widgets cannot come between a Expanded and its Flex.\n'
Dlayout_builder_mutations_test.dart6 import 'package:flutter/src/widgets/basic.dart';
7 import 'package:flutter/src/widgets/framework.dart';
8 import 'package:flutter/src/widgets/layout_builder.dart';
9 import 'package:flutter/src/widgets/sliver_layout_builder.dart';
10 import 'package:flutter/src/widgets/scroll_view.dart';
/third_party/flutter/flutter/examples/layers/
DREADME.md15 * [*widgets/*](widgets/) These examples use Flutter's widgets to build more
27 flutter run widgets/spinning_square.dart
/third_party/flutter/flutter/packages/flutter_test/test/
Dfinders_test.dart7 import 'package:flutter/widgets.dart';
12 testWidgets('finds Text widgets', (WidgetTester tester) async {
19 testWidgets('finds Text.rich widgets', (WidgetTester tester) async {
38 testWidgets('finds Semantically labeled widgets', (WidgetTester tester) async {
54 testWidgets('finds Semantically labeled widgets by RegExp', (WidgetTester tester) async {
70 …testWidgets('finds Semantically labeled widgets without explicit Semantics', (WidgetTester tester)…
81 testWidgets('excludes non-hit-testable widgets', (WidgetTester tester) async {

12345678910>>...33