How to set the TextFormField/TextField border color

by add the enableBorder property to the widget, we can set the color of the border.

enabledBorder: OutlineInputBorder(
          borderRadius: BorderRadius.circular(12),
          borderSide: BorderSide(
              color: Colors.pink
          )
      ),