mirror of
https://github.com/Iconica-Development/flutter_date_time_picker.git
synced 2025-05-18 18:33:49 +02:00
- Replaced 4 identical box-themes with different names with 1 general box-theme - Renamed ambiguously named textStyle-property of DatePicker that only affected weekday-styling as weekdayTextStyle - Added custimzation option to change border of days - Added customization option to change padding of calendar
15 lines
551 B
Dart
15 lines
551 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
library flutter_date_time_picker;
|
|
|
|
export 'src/drag_down_date_time_picker.dart' show DragDownDateTimePicker;
|
|
export 'src/overlay_date_time_picker.dart' show OverlayDateTimePicker;
|
|
export 'src/models/date_constraint.dart';
|
|
export 'src/enums/date_box_shape.dart';
|
|
export 'src/models/date_time_picker_theme.dart';
|
|
export 'src/models/date_time_picker_bar_theme.dart';
|
|
export 'src/widgets/date_time_picker/date_time_picker.dart';
|
|
export 'src/models/date_box_theme.dart';
|