flutter textfield bottom border color
TextField(
decoration: InputDecoration(
hintText: "Enter your Username",
labelText: "Username",
labelStyle: TextStyle(color: Colors.blue),
border: UnderlineInputBorder(
borderSide: BorderSide(
color: Colors.yellow
)
)
),
),