material.dart 5.16 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
// @dart = 2.8

7
/// Flutter widgets implementing Material Design.
8
///
9
/// To use, import `package:flutter/material.dart`.
10
///
11 12
/// {@youtube 560 315 https://www.youtube.com/watch?v=DL0Ix1lnC4w}
///
13 14
/// See also:
///
15
///  * [flutter.dev/widgets](https://flutter.dev/widgets/)
16
///    for a catalog of commonly-used Flutter widgets.
17
///  * [material.io/design](https://material.io/design/)
18
///    for an introduction to Material Design.
19 20
library material;

Ian Hickson's avatar
Ian Hickson committed
21
export 'src/material/about.dart';
22
export 'src/material/animated_icons.dart';
23
export 'src/material/app.dart';
24
export 'src/material/app_bar.dart';
25
export 'src/material/app_bar_theme.dart';
26
export 'src/material/arc.dart';
27
export 'src/material/back_button.dart';
28 29
export 'src/material/banner.dart';
export 'src/material/banner_theme.dart';
30
export 'src/material/bottom_app_bar.dart';
31
export 'src/material/bottom_app_bar_theme.dart';
32
export 'src/material/bottom_navigation_bar.dart';
33
export 'src/material/bottom_navigation_bar_theme.dart';
34
export 'src/material/bottom_sheet.dart';
35
export 'src/material/bottom_sheet_theme.dart';
36
export 'src/material/button.dart';
37
export 'src/material/button_bar.dart';
38
export 'src/material/button_bar_theme.dart';
39
export 'src/material/button_theme.dart';
40
export 'src/material/card.dart';
41
export 'src/material/card_theme.dart';
42
export 'src/material/checkbox.dart';
43
export 'src/material/checkbox_list_tile.dart';
44
export 'src/material/chip.dart';
45
export 'src/material/chip_theme.dart';
Adam Barth's avatar
Adam Barth committed
46
export 'src/material/circle_avatar.dart';
47
export 'src/material/color_scheme.dart';
48
export 'src/material/colors.dart';
49
export 'src/material/constants.dart';
50
export 'src/material/data_table.dart';
51
export 'src/material/data_table_source.dart';
52
export 'src/material/debug.dart';
53
export 'src/material/dialog.dart';
54
export 'src/material/dialog_theme.dart';
55
export 'src/material/divider.dart';
56
export 'src/material/divider_theme.dart';
57 58
export 'src/material/drawer.dart';
export 'src/material/drawer_header.dart';
59
export 'src/material/dropdown.dart';
60
export 'src/material/expand_icon.dart';
61
export 'src/material/expansion_panel.dart';
62
export 'src/material/expansion_tile.dart';
63
export 'src/material/feedback.dart';
64
export 'src/material/flat_button.dart';
65
export 'src/material/flexible_space_bar.dart';
66
export 'src/material/floating_action_button.dart';
67
export 'src/material/floating_action_button_location.dart';
68
export 'src/material/floating_action_button_theme.dart';
69
export 'src/material/flutter_logo.dart';
Hans Muller's avatar
Hans Muller committed
70
export 'src/material/grid_tile.dart';
71
export 'src/material/grid_tile_bar.dart';
Adam Barth's avatar
Adam Barth committed
72
export 'src/material/icon_button.dart';
73
export 'src/material/icons.dart';
Ian Hickson's avatar
Ian Hickson committed
74
export 'src/material/ink_decoration.dart';
75
export 'src/material/ink_highlight.dart';
76
export 'src/material/ink_ripple.dart';
77
export 'src/material/ink_splash.dart';
78
export 'src/material/ink_well.dart';
79
export 'src/material/input_border.dart';
80
export 'src/material/input_decorator.dart';
81
export 'src/material/list_tile.dart';
82
export 'src/material/material.dart';
83
export 'src/material/material_button.dart';
84
export 'src/material/material_localizations.dart';
85
export 'src/material/material_state.dart';
86
export 'src/material/mergeable_material.dart';
87 88
export 'src/material/navigation_rail.dart';
export 'src/material/navigation_rail_theme.dart';
89
export 'src/material/outline_button.dart';
90
export 'src/material/page.dart';
91
export 'src/material/page_transitions_theme.dart';
92
export 'src/material/paginated_data_table.dart';
93
export 'src/material/pickers/pickers.dart';
Adam Barth's avatar
Adam Barth committed
94
export 'src/material/popup_menu.dart';
95
export 'src/material/popup_menu_theme.dart';
96 97
export 'src/material/progress_indicator.dart';
export 'src/material/radio.dart';
98
export 'src/material/radio_list_tile.dart';
99
export 'src/material/raised_button.dart';
100
export 'src/material/range_slider.dart';
101
export 'src/material/refresh_indicator.dart';
102
export 'src/material/reorderable_list.dart';
103
export 'src/material/scaffold.dart';
104
export 'src/material/scrollbar.dart';
105
export 'src/material/search.dart';
106
export 'src/material/selectable_text.dart';
107
export 'src/material/shadows.dart';
108
export 'src/material/slider.dart';
109
export 'src/material/slider_theme.dart';
110
export 'src/material/snack_bar.dart';
111
export 'src/material/snack_bar_theme.dart';
112
export 'src/material/stepper.dart';
113
export 'src/material/switch.dart';
114
export 'src/material/switch_list_tile.dart';
115
export 'src/material/tab_bar_theme.dart';
Hans Muller's avatar
Hans Muller committed
116
export 'src/material/tab_controller.dart';
117
export 'src/material/tab_indicator.dart';
118
export 'src/material/tabs.dart';
119 120 121
export 'src/material/text_field.dart';
export 'src/material/text_form_field.dart';
export 'src/material/text_selection.dart';
122
export 'src/material/text_theme.dart';
Adam Barth's avatar
Adam Barth committed
123
export 'src/material/theme.dart';
124
export 'src/material/theme_data.dart';
125
export 'src/material/time.dart';
126
export 'src/material/time_picker.dart';
127 128
export 'src/material/toggle_buttons.dart';
export 'src/material/toggle_buttons_theme.dart';
129
export 'src/material/toggleable.dart';
Hixie's avatar
Hixie committed
130
export 'src/material/tooltip.dart';
131
export 'src/material/tooltip_theme.dart';
132
export 'src/material/typography.dart';
133
export 'src/material/user_accounts_drawer_header.dart';
134
export 'widgets.dart';