Answers for "change color outline border textfield 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
0

flutter text border color

Stack(
  children: <Widget>[
    // Stroked text as border.
    Text(
      'Greetings, planet!',
      style: TextStyle(
        fontSize: 40,
        foreground: Paint()
          ..style = PaintingStyle.stroke
          ..strokeWidth = 6
          ..color = Colors.blue[700],
      ),
    ),
    // Solid text as fill.
    Text(
      'Greetings, planet!',
      style: TextStyle(
        fontSize: 40,
        color: Colors.grey[300],
      ),
    ),
  ],
)
Posted by: Guest on November-03-2020

Code answers related to "change color outline border textfield flutter"

C# Answers by Framework

Browse Popular Code Answers by Language