FormattedValueState
A hoistable state holder for a FormattedTextField: the value the field holds, whether the characters it currently shows parse, and the gesture that takes a typed edit on demand.
value is two-way: assigning it renders that value through the field's formatter, and a value the field commits - the user pressing Enter, the field losing focus, or commit - is written back into it. The state is the single source of truth; there is no onValueChange.
value and isEditValid are snapshot-observable: reading one inside a composable (or a snapshotFlow collector) subscribes to later commits and to what the user types, so the reader recomposes as the field moves. Gating a form's save button on isEditValid is what that buys.
A state drives at most one field: declaring it on a second one moves it there and leaves the first unbound.
See also
Properties
Whether the characters the field currently shows parse. It moves with what the user types rather than with what the field commits, so a part-typed edit reports false while value stands where the last commit left it. true while no field renders this state.