Answers for "how to make a the box arround the textformfield take color"

0

how to make a the box arround the textformfield take color

TextFormField(
  decoration: InputDecoration(
    labelText: "Resevior Name",
    fillColor: Colors.white,
    enabledBorder:OutlineInputBorder(
      borderSide: const BorderSide(color: Colors.white, width: 2.0),
        borderRadius: BorderRadius.circular(25.0),
      ),
    ),
  )
Posted by: Guest on March-25-2022

Code answers related to "how to make a the box arround the textformfield take color"

Browse Popular Code Answers by Language