disabledBorder property
The border to display when the RichInputDecorator is disabled and is not showing an error.
See also:
- RichInputDecoration.enabled, which is false if the RichInputDecorator is disabled.
- RichInputDecoration.errorText, the error shown by the RichInputDecorator, if non-null.
- border, for a description of where the RichInputDecorator border appears.
- UnderlineInputBorder, an RichInputDecorator border which draws a horizontal line at the bottom of the input decorator's container.
- OutlineInputBorder, an RichInputDecorator border which draws a rounded rectangle around the input decorator's container.
- InputBorder.none, which doesn't draw a border.
- errorBorder, displayed when RichInputDecorator.isFocused is false and RichInputDecoration.errorText is non-null.
- focusedBorder, displayed when RichInputDecorator.isFocused is true and RichInputDecoration.errorText is null.
- focusedErrorBorder, displayed when RichInputDecorator.isFocused is true and RichInputDecoration.errorText is non-null.
- enabledBorder, displayed when RichInputDecoration.enabled is true and RichInputDecoration.errorText is null.
Implementation
final InputBorder? disabledBorder;