You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
411 B

/// Used to toggle the visibility behavior of the [SendButton] based on the
/// [TextField] state inside the [Input] widget.
enum SendButtonVisibilityMode {
/// Always show the [SendButton] regardless of the [TextField] state.
always,
/// The [SendButton] will only appear when the [TextField] is not empty.
editing,
/// Always hide the [SendButton] regardless of the [TextField] state.
hidden,
}