Answers for "how to change color of textfield border flutter"

C#
5

change border color of TextField in flutter

TextFormField(
        decoration: InputDecoration(
          labelText: "Resevior Name",
          fillColor: Colors.white,
          focusedBorder:OutlineInputBorder(
            borderSide: const BorderSide(color: Colors.white, width: 2.0),
            borderRadius: BorderRadius.circular(25.0),
          ),
        ),
      )
Posted by: Guest on November-03-2020
0

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
        )
      )
    ),
  ),
Posted by: Guest on November-28-2021

Code answers related to "how to change color of textfield border flutter"

C# Answers by Framework

Browse Popular Code Answers by Language