-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathwidgets.json
3210 lines (3210 loc) · 112 KB
/
widgets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"flutter": {
"version": "3.22.0-0.1.pre",
"channel": "beta"
},
"widgets": [
{
"name": "AboutDialog",
"parent": "StatelessWidget",
"library": "material",
"description": "An about box. This is a dialog box with the application's icon, name, version number, and copyright, plus a button to show licenses for software used by the application."
},
{
"name": "AboutListTile",
"parent": "StatelessWidget",
"library": "material",
"description": "A [ListTile] that shows an about box."
},
{
"name": "AbsorbPointer",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that absorbs pointers during hit testing."
},
{
"name": "ActionChip",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design action chip."
},
{
"name": "ActionIconTheme",
"parent": "InheritedTheme",
"library": "material",
"description": "An inherited widget that overrides the default icon of [BackButtonIcon], [CloseButtonIcon], [DrawerButtonIcon], and [EndDrawerButtonIcon] in this widget's subtree."
},
{
"name": "ActionListener",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A helper widget for making sure that listeners on an action are removed properly."
},
{
"name": "Actions",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A widget that maps [Intent]s to [Action]s to be used by its descendants when invoking an [Action]."
},
{
"name": "AdaptiveTextSelectionToolbar",
"parent": "StatelessWidget",
"library": "material",
"description": "The default context menu for text selection for the current platform."
},
{
"name": "AlertDialog",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design alert dialog."
},
{
"name": "Align",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that aligns its child within itself and optionally sizes itself based on the child's size."
},
{
"name": "AlignTransition",
"parent": "AnimatedWidget",
"library": "widgets",
"description": "Animated version of an [Align] that animates its [Align.alignment] property."
},
{
"name": "AndroidView",
"parent": "StatefulWidget",
"library": "widgets",
"description": "Embeds an Android view in the Widget hierarchy."
},
{
"name": "AndroidViewSurface",
"parent": "StatefulWidget",
"library": "widgets",
"description": "Integrates an Android view with Flutter's compositor, touch, and semantics subsystems."
},
{
"name": "AnimatedAlign",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Align] which automatically transitions the child's position over a given duration whenever the given [alignment] changes."
},
{
"name": "AnimatedBuilder",
"parent": "ListenableBuilder",
"library": "widgets",
"description": "A general-purpose widget for building animations."
},
{
"name": "AnimatedContainer",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Container] that gradually changes its values over a period of time."
},
{
"name": "AnimatedCrossFade",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A widget that cross-fades between two given children and animates itself between their sizes."
},
{
"name": "AnimatedDefaultTextStyle",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [DefaultTextStyle] which automatically transitions the default text style (the text style to apply to descendant [Text] widgets without explicit style) over a given duration whenever the given style changes."
},
{
"name": "AnimatedFractionallySizedBox",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [FractionallySizedBox] which automatically transitions the child's size over a given duration whenever the given [widthFactor] or [heightFactor] changes, as well as the position whenever the given [alignment] changes."
},
{
"name": "AnimatedGrid",
"parent": "_AnimatedScrollView",
"library": "widgets",
"description": "A scrolling container that animates items when they are inserted into or removed from a grid. in a grid."
},
{
"name": "AnimatedIcon",
"parent": "StatelessWidget",
"library": "material",
"description": "Shows an animated icon at a given animation [progress]."
},
{
"name": "AnimatedList",
"parent": "_AnimatedScrollView",
"library": "widgets",
"description": "A scrolling container that animates items when they are inserted or removed."
},
{
"name": "AnimatedModalBarrier",
"parent": "AnimatedWidget",
"library": "widgets",
"description": "A widget that prevents the user from interacting with widgets behind itself, and can be configured with an animated color value."
},
{
"name": "AnimatedOpacity",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Opacity] which automatically transitions the child's opacity over a given duration whenever the given opacity changes."
},
{
"name": "AnimatedPadding",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Padding] which automatically transitions the indentation over a given duration whenever the given inset changes."
},
{
"name": "AnimatedPhysicalModel",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [PhysicalModel]."
},
{
"name": "AnimatedPositioned",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Positioned] which automatically transitions the child's position over a given duration whenever the given position changes."
},
{
"name": "AnimatedPositionedDirectional",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [PositionedDirectional] which automatically transitions the child's position over a given duration whenever the given position changes."
},
{
"name": "AnimatedRotation",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Transform.rotate] which automatically transitions the child's rotation over a given duration whenever the given rotation changes."
},
{
"name": "AnimatedScale",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Animated version of [Transform.scale] which automatically transitions the child's scale over a given duration whenever the given scale changes."
},
{
"name": "AnimatedSize",
"parent": "StatefulWidget",
"library": "widgets",
"description": "Animated widget that automatically transitions its size over a given duration whenever the given child's size changes."
},
{
"name": "AnimatedSlide",
"parent": "ImplicitlyAnimatedWidget",
"library": "widgets",
"description": "Widget which automatically transitions the child's offset relative to its normal position whenever the given offset changes."
},
{
"name": "AnimatedSwitcher",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A widget that by default does a cross-fade between a new widget and the widget previously set on the [AnimatedSwitcher] as a child."
},
{
"name": "AnimatedTheme",
"parent": "ImplicitlyAnimatedWidget",
"library": "material",
"description": "Animated version of [Theme] which automatically transitions the colors, etc, over a given duration whenever the given theme changes."
},
{
"name": "AnimatedWidget",
"parent": "StatefulWidget",
"library": "widgets",
"abstract": true,
"description": "A widget that rebuilds when the given [Listenable] changes value."
},
{
"name": "AnnotatedRegion",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "Annotates a region of the layer tree with a value."
},
{
"name": "AppBar",
"parent": "StatefulWidget",
"library": "material",
"description": "A Material Design app bar."
},
{
"name": "AppKitView",
"parent": "_DarwinView",
"library": "widgets",
"description": "Widget that contains a macOS AppKit view."
},
{
"name": "AspectRatio",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that attempts to size the child to a specific aspect ratio."
},
{
"name": "Autocomplete",
"parent": "StatelessWidget",
"library": "material",
"description": "{@macro flutter.widgets.RawAutocomplete.RawAutocomplete}"
},
{
"name": "AutocompleteHighlightedOption",
"parent": "InheritedNotifier",
"library": "widgets",
"description": "An inherited widget used to indicate which autocomplete option should be highlighted for keyboard navigation."
},
{
"name": "AutofillGroup",
"parent": "StatefulWidget",
"library": "widgets",
"description": "An [AutofillScope] widget that groups [AutofillClient]s together."
},
{
"name": "AutomaticKeepAlive",
"parent": "StatefulWidget",
"library": "widgets",
"description": "Allows subtrees to request to be kept alive in lazy lists."
},
{
"name": "BackButton",
"parent": "_ActionButton",
"library": "material",
"description": "A Material Design back icon button."
},
{
"name": "BackButtonIcon",
"parent": "StatelessWidget",
"library": "material",
"description": "A \"back\" icon that's appropriate for the current [TargetPlatform]."
},
{
"name": "BackButtonListener",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A convenience widget that registers a callback for when the back button is pressed."
},
{
"name": "BackdropFilter",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that applies a filter to the existing painted content and then paints [child]."
},
{
"name": "Badge",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design \"badge\"."
},
{
"name": "BadgeTheme",
"parent": "InheritedTheme",
"library": "material",
"description": "An inherited widget that overrides the default color style, and size parameters for [Badge]s in this widget's subtree."
},
{
"name": "Banner",
"parent": "StatefulWidget",
"library": "widgets",
"description": "Displays a diagonal message above the corner of another widget."
},
{
"name": "Baseline",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that positions its child according to the child's baseline."
},
{
"name": "BlockSemantics",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that drops the semantics of all widget that were painted before it in the same semantic container."
},
{
"name": "BottomAppBar",
"parent": "StatefulWidget",
"library": "material",
"description": "A container that is typically used with [Scaffold.bottomNavigationBar]."
},
{
"name": "BottomNavigationBar",
"parent": "StatefulWidget",
"library": "material",
"description": "A material widget that's displayed at the bottom of an app for selecting among a small number of views, typically between three and five."
},
{
"name": "BottomNavigationBarTheme",
"parent": "InheritedWidget",
"library": "material",
"description": "Applies a bottom navigation bar theme to descendant [BottomNavigationBar] widgets."
},
{
"name": "BottomSheet",
"parent": "StatefulWidget",
"library": "material",
"description": "A Material Design bottom sheet."
},
{
"name": "BoxScrollView",
"parent": "ScrollView",
"library": "widgets",
"abstract": true,
"description": "A [ScrollView] that uses a single child layout model."
},
{
"name": "Builder",
"parent": "StatelessWidget",
"library": "widgets",
"description": "A stateless utility widget whose [build] method uses its [builder] callback to create the widget's child."
},
{
"name": "ButtonBar",
"parent": "StatelessWidget",
"library": "material",
"description": "An end-aligned row of buttons, laying out into a column if there is not enough horizontal space."
},
{
"name": "ButtonBarTheme",
"parent": "InheritedWidget",
"library": "material",
"description": "Applies a button bar theme to descendant [ButtonBar] widgets."
},
{
"name": "ButtonStyleButton",
"parent": "StatefulWidget",
"library": "material",
"abstract": true,
"description": "The base [StatefulWidget] class for buttons whose style is defined by a [ButtonStyle] object."
},
{
"name": "ButtonTheme",
"parent": "InheritedTheme",
"library": "material",
"description": "Used with [ButtonThemeData] to configure the color and geometry of buttons."
},
{
"name": "CalendarDatePicker",
"parent": "StatefulWidget",
"library": "material",
"description": "Displays a grid of days for a given month and allows the user to select a date."
},
{
"name": "CallbackShortcuts",
"parent": "StatelessWidget",
"library": "widgets",
"description": "A widget that binds key combinations to specific callbacks."
},
{
"name": "Card",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design card: a panel with slightly rounded corners and an elevation shadow."
},
{
"name": "Center",
"parent": "Align",
"library": "widgets",
"description": "A widget that centers its child within itself."
},
{
"name": "Checkbox",
"parent": "StatefulWidget",
"library": "material",
"description": "A Material Design checkbox."
},
{
"name": "CheckboxListTile",
"parent": "StatelessWidget",
"library": "material",
"description": "A [ListTile] with a [Checkbox]. In other words, a checkbox with a label."
},
{
"name": "CheckboxMenuButton",
"parent": "StatelessWidget",
"library": "material",
"description": "A menu item that combines a [Checkbox] widget with a [MenuItemButton]."
},
{
"name": "CheckboxTheme",
"parent": "InheritedWidget",
"library": "material",
"description": "Applies a checkbox theme to descendant [Checkbox] widgets."
},
{
"name": "CheckedModeBanner",
"parent": "StatelessWidget",
"library": "widgets",
"description": "Displays a [Banner] saying \"DEBUG\" when running in debug mode. [MaterialApp] builds one of these by default."
},
{
"name": "CheckedPopupMenuItem",
"parent": "PopupMenuItem",
"library": "material",
"description": "An item with a checkmark in a Material Design popup menu."
},
{
"name": "Chip",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design chip."
},
{
"name": "ChipTheme",
"parent": "InheritedTheme",
"library": "material",
"description": "Applies a chip theme to descendant [RawChip]-based widgets, like [Chip], [InputChip], [ChoiceChip], [FilterChip], and [ActionChip]."
},
{
"name": "ChoiceChip",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design choice chip."
},
{
"name": "CircleAvatar",
"parent": "StatelessWidget",
"library": "material",
"description": "A circle that represents a user."
},
{
"name": "CircularProgressIndicator",
"parent": "ProgressIndicator",
"library": "material",
"description": "A Material Design circular progress indicator, which spins to indicate that the application is busy."
},
{
"name": "ClipOval",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that clips its child using an oval."
},
{
"name": "ClipPath",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that clips its child using a path."
},
{
"name": "ClipRRect",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that clips its child using a rounded rectangle."
},
{
"name": "ClipRect",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that clips its child using a rectangle."
},
{
"name": "CloseButton",
"parent": "_ActionButton",
"library": "material",
"description": "A Material Design close icon button."
},
{
"name": "CloseButtonIcon",
"parent": "StatelessWidget",
"library": "material",
"description": "A \"close\" icon that's appropriate for the current [TargetPlatform]."
},
{
"name": "ColorFiltered",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "Applies a [ColorFilter] to its child."
},
{
"name": "ColoredBox",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that paints its area with a specified [Color] and then draws its child on top of that color."
},
{
"name": "Column",
"parent": "Flex",
"library": "widgets",
"description": "A widget that displays its children in a vertical array."
},
{
"name": "CompositedTransformFollower",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that follows a [CompositedTransformTarget]."
},
{
"name": "CompositedTransformTarget",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that can be targeted by a [CompositedTransformFollower]."
},
{
"name": "ConstrainedBox",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that imposes additional constraints on its child."
},
{
"name": "ConstrainedLayoutBuilder",
"parent": "RenderObjectWidget",
"library": "widgets",
"abstract": true,
"description": "An abstract superclass for widgets that defer their building until layout."
},
{
"name": "ConstraintsTransformBox",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A container widget that applies an arbitrary transform to its constraints, and sizes its child using the resulting [BoxConstraints], optionally clipping, or treating the overflow as an error."
},
{
"name": "Container",
"parent": "StatelessWidget",
"library": "widgets",
"description": "A convenience widget that combines common painting, positioning, and sizing widgets."
},
{
"name": "CupertinoActionSheet",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style action sheet."
},
{
"name": "CupertinoActionSheetAction",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A button typically used in a [CupertinoActionSheet]."
},
{
"name": "CupertinoActivityIndicator",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style activity indicator that spins clockwise."
},
{
"name": "CupertinoAdaptiveTextSelectionToolbar",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "The default Cupertino context menu for text selection for the current platform with the given children."
},
{
"name": "CupertinoAlertDialog",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style alert dialog."
},
{
"name": "CupertinoApp",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An application that uses Cupertino design."
},
{
"name": "CupertinoButton",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style button."
},
{
"name": "CupertinoCheckbox",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A macOS style checkbox."
},
{
"name": "CupertinoContextMenu",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A full-screen modal route that opens when the [child] is long-pressed."
},
{
"name": "CupertinoContextMenuAction",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A button in a _ContextMenuSheet."
},
{
"name": "CupertinoDatePicker",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A date picker widget in iOS style."
},
{
"name": "CupertinoDesktopTextSelectionToolbar",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A macOS-style text selection toolbar."
},
{
"name": "CupertinoDesktopTextSelectionToolbarButton",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A button in the style of the Mac context menu buttons."
},
{
"name": "CupertinoDialogAction",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A button typically used in a [CupertinoAlertDialog]."
},
{
"name": "CupertinoFormRow",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-style form row."
},
{
"name": "CupertinoFormSection",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-style form section."
},
{
"name": "CupertinoFullscreenDialogTransition",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-style transition used for summoning fullscreen dialogs."
},
{
"name": "CupertinoListSection",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-style list section."
},
{
"name": "CupertinoListTile",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style list tile."
},
{
"name": "CupertinoListTileChevron",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A typical iOS trailing widget used to denote that a `CupertinoListTile` is a button with an action."
},
{
"name": "CupertinoMagnifier",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A [RawMagnifier] used for magnifying text in cases where a user's finger may be blocking the point of interest, like a selection handle."
},
{
"name": "CupertinoNavigationBar",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-styled navigation bar."
},
{
"name": "CupertinoNavigationBarBackButton",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A nav bar back button typically used in [CupertinoNavigationBar]."
},
{
"name": "CupertinoPageScaffold",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "Implements a single iOS application page's layout."
},
{
"name": "CupertinoPageTransition",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "Provides an iOS-style page transition animation."
},
{
"name": "CupertinoPicker",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-styled picker."
},
{
"name": "CupertinoPickerDefaultSelectionOverlay",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "A default selection overlay for [CupertinoPicker]s."
},
{
"name": "CupertinoPopupSurface",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "Rounded rectangle surface that looks like an iOS popup surface, e.g., alert dialog and action sheet."
},
{
"name": "CupertinoRadio",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A macOS-style radio button."
},
{
"name": "CupertinoScrollbar",
"parent": "RawScrollbar",
"library": "cupertino",
"description": "An iOS style scrollbar."
},
{
"name": "CupertinoSearchTextField",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A [CupertinoTextField] that mimics the look and behavior of UIKit's `UISearchTextField`."
},
{
"name": "CupertinoSegmentedControl",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style segmented control."
},
{
"name": "CupertinoSlider",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style slider."
},
{
"name": "CupertinoSlidingSegmentedControl",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS 13 style segmented control."
},
{
"name": "CupertinoSliverNavigationBar",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-styled navigation bar with iOS-11-style large titles using slivers."
},
{
"name": "CupertinoSliverRefreshControl",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A sliver widget implementing the iOS-style pull to refresh content control."
},
{
"name": "CupertinoSpellCheckSuggestionsToolbar",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "The default spell check suggestions toolbar for iOS."
},
{
"name": "CupertinoSwitch",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style switch."
},
{
"name": "CupertinoTabBar",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-styled bottom navigation tab bar."
},
{
"name": "CupertinoTabScaffold",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "Implements a tabbed iOS application's root layout and behavior structure."
},
{
"name": "CupertinoTabView",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A single tab view with its own [Navigator] state and history."
},
{
"name": "CupertinoTextField",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "An iOS-style text field."
},
{
"name": "CupertinoTextFormFieldRow",
"parent": "FormField",
"library": "cupertino",
"description": "Creates a [CupertinoFormRow] containing a [FormField] that wraps a [CupertinoTextField]."
},
{
"name": "CupertinoTextMagnifier",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A [CupertinoMagnifier] used for magnifying text in cases where a user's finger may be blocking the point of interest, like a selection handle."
},
{
"name": "CupertinoTextSelectionToolbar",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "An iOS-style text selection toolbar."
},
{
"name": "CupertinoTextSelectionToolbarButton",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A button in the style of the iOS text selection toolbar buttons."
},
{
"name": "CupertinoTheme",
"parent": "StatelessWidget",
"library": "cupertino",
"description": "Applies a visual styling theme to descendant Cupertino widgets."
},
{
"name": "CupertinoTimerPicker",
"parent": "StatefulWidget",
"library": "cupertino",
"description": "A countdown timer picker in iOS style."
},
{
"name": "CupertinoUserInterfaceLevel",
"parent": "InheritedWidget",
"library": "cupertino",
"description": "Establishes a subtree in which [CupertinoUserInterfaceLevel.of] resolves to the given visual elevation from the [CupertinoUserInterfaceLevelData]. This can be used to apply style differences based on a widget's elevation."
},
{
"name": "CustomMultiChildLayout",
"parent": "MultiChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that uses a delegate to size and position multiple children."
},
{
"name": "CustomPaint",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that provides a canvas on which to draw during the paint phase."
},
{
"name": "CustomScrollView",
"parent": "ScrollView",
"library": "widgets",
"description": "A [ScrollView] that creates custom scroll effects using [slivers]."
},
{
"name": "CustomSingleChildLayout",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that defers the layout of its single child to a delegate."
},
{
"name": "DataTable",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design data table."
},
{
"name": "DataTableTheme",
"parent": "InheritedWidget",
"library": "material",
"description": "Applies a data table theme to descendant [DataTable] widgets."
},
{
"name": "DatePickerDialog",
"parent": "StatefulWidget",
"library": "material",
"description": "A Material-style date picker dialog."
},
{
"name": "DatePickerTheme",
"parent": "InheritedTheme",
"library": "material",
"description": "An inherited widget that defines the visual properties for [DatePickerDialog]s in this widget's subtree."
},
{
"name": "DateRangePickerDialog",
"parent": "StatefulWidget",
"library": "material",
"description": "A Material-style date range picker dialog."
},
{
"name": "DecoratedBox",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A widget that paints a [Decoration] either before or after its child paints."
},
{
"name": "DecoratedBoxTransition",
"parent": "AnimatedWidget",
"library": "widgets",
"description": "Animated version of a [DecoratedBox] that animates the different properties of its [Decoration]."
},
{
"name": "DecoratedSliver",
"parent": "SingleChildRenderObjectWidget",
"library": "widgets",
"description": "A sliver widget that paints a [Decoration] either before or after its child paints."
},
{
"name": "DefaultAssetBundle",
"parent": "InheritedWidget",
"library": "widgets",
"description": "A widget that determines the default asset bundle for its descendants."
},
{
"name": "DefaultSelectionStyle",
"parent": "InheritedTheme",
"library": "widgets",
"description": "The selection style to apply to descendant [EditableText] widgets which don't have an explicit style."
},
{
"name": "DefaultTabController",
"parent": "StatefulWidget",
"library": "material",
"description": "The [TabController] for descendant widgets that don't specify one explicitly."
},
{
"name": "DefaultTextEditingShortcuts",
"parent": "StatelessWidget",
"library": "widgets",
"description": "A widget with the shortcuts used for the default text editing behavior."
},
{
"name": "DefaultTextHeightBehavior",
"parent": "InheritedTheme",
"library": "widgets",
"description": "The [TextHeightBehavior] that will apply to descendant [Text] and [EditableText] widgets which have not explicitly set [Text.textHeightBehavior]."
},
{
"name": "DefaultTextStyle",
"parent": "InheritedTheme",
"library": "widgets",
"description": "The text style to apply to descendant [Text] widgets which don't have an explicit style."
},
{
"name": "DefaultTextStyleTransition",
"parent": "AnimatedWidget",
"library": "widgets",
"description": "Animated version of a [DefaultTextStyle] that animates the different properties of its [TextStyle]."
},
{
"name": "DesktopTextSelectionToolbar",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material-style desktop text selection toolbar."
},
{
"name": "DesktopTextSelectionToolbarButton",
"parent": "StatelessWidget",
"library": "material",
"description": "A [TextButton] for the Material desktop text selection toolbar."
},
{
"name": "Dialog",
"parent": "StatelessWidget",
"library": "material",
"description": "A Material Design dialog."
},
{
"name": "Directionality",
"parent": "_UbiquitousInheritedWidget",
"library": "widgets",
"description": "A widget that determines the ambient directionality of text and text-direction-sensitive render objects."
},
{
"name": "Dismissible",
"parent": "StatefulWidget",
"library": "widgets",
"description": "A widget that can be dismissed by dragging in the indicated [direction]."
},