k2TextFieldDecoration top-level property

InputDecoration k2TextFieldDecoration
final

Implementation

final k2TextFieldDecoration = InputDecoration(
  floatingLabelBehavior: FloatingLabelBehavior.auto,
  enabledBorder: UnderlineInputBorder(
    borderSide: BorderSide(color: kPrimaryColor),
  ),
  focusedBorder: UnderlineInputBorder(
    borderSide: BorderSide(color: kPrimaryColor),
  ),
  border: UnderlineInputBorder(
    borderSide: BorderSide(color: kPrimaryColor),
  ),
);