data_entry library

Functions

showCustomTimePicker({required BuildContext context, required TimePickerType type, TimePickerMode mode = TimePickerMode.single, DateTime? initialTime, DateTime? initialStartTime, DateTime? initialEndTime, DateTime? minTime, DateTime? maxTime}) Future<TimePickerModel?>
构造函数参数 context 上下文环境,用于构建UI type 时间选择器的类型 mode 时间选择器的模式,默认为单选模式 initialTime 初始时间,仅在单选模式下使用 initialStartTime 初始开始时间,仅在范围选择模式下使用 initialEndTime 初始结束时间,仅在范围选择模式下使用 minTime 可选的最小时间限制 maxTime 可选的最大时间限制
showJuiSelectPicker({required BuildContext context, required JuiSelectPickerConfig config, required List<JuiSelectPickerItemUI> items, required JuiSelectPickerCallback onSelect, List<JuiSelectPickerItemData> initialSelection = const [], VoidCallback? onCancel, Key? key}) Future<void>

Typedefs

JuiSelectItemCallback = void Function(JuiSelectPickerItemData item)
JuiSelectPickerCallback = void Function(List<String> selectedKeys, List<String> selectedValues)