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

/// Flutter widgets implementing the current iOS design language.
///
/// To use, import `package:flutter/cupertino.dart`.
8
///
9 10 11 12 13
/// This library is designed for apps that run on iOS. For apps that may also
/// run on other operating systems, we encourage use of other widgets, for
/// example the [Material
/// Design](https://flutter.dev/docs/development/ui/widgets/material) set.
///
14
/// {@youtube 560 315 https://www.youtube.com/watch?v=3PdUaidHc-E}
15 16 17 18 19 20 21 22
///
/// See also:
///
///  * [flutter.dev/widgets/cupertino](https://flutter.dev/docs/development/ui/widgets/cupertino)
///    for a catalog of all Cupertino widgets.
///  * [flutter.dev/widgets](https://flutter.dev/widgets/)
///    for a catalog of commonly-used Flutter widgets.

23 24
library cupertino;

25
export 'src/cupertino/activity_indicator.dart';
xster's avatar
xster committed
26
export 'src/cupertino/app.dart';
xster's avatar
xster committed
27
export 'src/cupertino/bottom_tab_bar.dart';
28
export 'src/cupertino/button.dart';
xster's avatar
xster committed
29
export 'src/cupertino/colors.dart';
30
export 'src/cupertino/constants.dart';
31 32
export 'src/cupertino/context_menu.dart';
export 'src/cupertino/context_menu_action.dart';
33
export 'src/cupertino/date_picker.dart';
34
export 'src/cupertino/desktop_text_selection.dart';
35
export 'src/cupertino/dialog.dart';
36 37
export 'src/cupertino/form_row.dart';
export 'src/cupertino/form_section.dart';
38
export 'src/cupertino/icon_theme_data.dart';
39
export 'src/cupertino/icons.dart';
40
export 'src/cupertino/interface_level.dart';
41
export 'src/cupertino/localizations.dart';
42
export 'src/cupertino/nav_bar.dart';
43
export 'src/cupertino/page_scaffold.dart';
44
export 'src/cupertino/picker.dart';
45
export 'src/cupertino/refresh.dart';
46
export 'src/cupertino/route.dart';
47
export 'src/cupertino/scrollbar.dart';
48
export 'src/cupertino/search_field.dart';
49
export 'src/cupertino/segmented_control.dart';
50
export 'src/cupertino/slider.dart';
51
export 'src/cupertino/sliding_segmented_control.dart';
52
export 'src/cupertino/switch.dart';
53
export 'src/cupertino/tab_scaffold.dart';
54
export 'src/cupertino/tab_view.dart';
55
export 'src/cupertino/text_field.dart';
56
export 'src/cupertino/text_form_field_row.dart';
xster's avatar
xster committed
57
export 'src/cupertino/text_selection.dart';
58 59
export 'src/cupertino/text_selection_toolbar.dart';
export 'src/cupertino/text_selection_toolbar_button.dart';
xster's avatar
xster committed
60 61
export 'src/cupertino/text_theme.dart';
export 'src/cupertino/theme.dart';
62
export 'src/cupertino/thumb_painter.dart';
63
export 'widgets.dart';