Answers for "flutter make text field have only bottom border"

C#
1

add only bottom border to container flutter

decoration: BoxDecoration(
          border: Border(
            top: BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
            bottom: BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
          ),
          color: Colors.white,
        ),
Posted by: Guest on November-20-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 "flutter make text field have only bottom border"

C# Answers by Framework

Browse Popular Code Answers by Language