TimeFieldWidget class

time. Flutter's own showTimePicker, so no dependency — but it offers neither bounds nor seconds, so both are handled here:

  • Bounds clamp the pick. The dial cannot be restricted, so a time outside [minDate, maxDate] is pulled to the nearest bound the moment it is chosen, and the field shows the clamped value immediately. The alternative is storing a value the server refuses, and bounds are published as hints, not as validation rules — nothing else would catch it.
  • Seconds decide the wire format, not the picker: showTimePicker cannot pick seconds at all, so a seconds: true field reports HH:mm:ss. That matches TimePicker's own H:i:s format, which is what the server parses. Stored seconds are kept when the user leaves the hour and minute alone — opening the picker and pressing OK must not quietly rewrite 14:05:30 to 14:05:00.

The reported value is HH:mm (or HH:mm:ss) — never DateTime.toIso8601String(), which would invent a date the panel never chose.

Inheritance

Constructors

TimeFieldWidget({required DateComponent component, required FieldState state, Key? key})
const

Properties

component DateComponent
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state FieldState
final

Methods

build(BuildContext context) Widget
Describes the part of the user interface represented by this widget.
override
createElement() StatelessElement
Creates a StatelessElement to manage this widget's location in the tree.
inherited
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited