Answers for "make textfield round flutter"

5

flutter textfield rounded

TextField(
                decoration: InputDecoration(
                  border: OutlineInputBorder(
                    borderRadius: BorderRadius.circular(30.0),
                  )
                ),
              )
Posted by: Guest on August-28-2021
0

make text filed round flutter

new TextField(
  decoration: new InputDecoration(
      border: new OutlineInputBorder(
        borderRadius: const BorderRadius.all(
          const Radius.circular(10.0),
        ),
      ),
      filled: true,
      hintStyle: new TextStyle(color: Colors.grey[800]),
      hintText: "Type in your text",
      fillColor: Colors.white70),
)
Posted by: Guest on June-02-2021

Browse Popular Code Answers by Language