focusedBorder property

  1. @override
InputBorder focusedBorder
override

The border to display when the InputDecorator has the focus and is not showing an error.

See also:

Implementation

@override
InputBorder get focusedBorder => OutlineInputBorder(
      borderSide: BorderSide(
        color: editingBorderColor ?? Theme.of(context).primaryColor,
        width: borderWidth ?? 0,
      ),
      borderRadius: getradius(shape),
    );