pickers.dart 877 Bytes
Newer Older
1 2 3 4 5 6
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Date Picker public API
export 'calendar_date_picker.dart' show CalendarDatePicker;
7 8 9 10 11
export 'date_picker_common.dart' show
  DatePickerEntryMode,
  DatePickerMode,
  DateTimeRange,
  SelectableDayPredicate;
12 13
export 'date_picker_deprecated.dart';
export 'date_picker_dialog.dart' show showDatePicker;
14
export 'date_range_picker_dialog.dart' show showDateRangePicker;
15
export 'input_date_picker.dart' show InputDatePickerFormField;
16 17 18 19 20 21

// TODO(ianh): Not exporting everything is unusual and we should
// probably change to just exporting everything and making sure it's
// acceptable as a public API, or, worst case, merging the parts
// that really must be public into a single file and make them
// actually private.