Answers for "rounded Textfield flutter"

1

textfield border radius flutter

TextFormField(
  decoration: InputDecoration(
    border: OutlineInputBorder(
      borderRadius: BorderRadius.circular(8),
    ),
  ),
),
Posted by: Guest on May-29-2021
5

flutter textfield rounded

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

textfield border flutter

decoration: new InputDecoration(
                border: new OutlineInputBorder(
                    borderSide: new BorderSide(color: Colors.teal)),
                hintText: 'Tell us about yourself',
                helperText: 'Keep it short, this is just a demo.',
                labelText: 'Life story',
                prefixIcon: const Icon(
                  Icons.person,
                  color: Colors.green,
                ),
                prefixText: ' ',
                suffixText: 'USD',
                suffixStyle: const TextStyle(color: Colors.green)),
          ),
Posted by: Guest on May-18-2020
2

flutter textformfield border radius

decoration: const InputDecoration(
	border: const OutlineInputBorder(
		borderRadius: const BorderRadius.all(
		const Radius.circular(10.0),
	),
),
Posted by: Guest on March-12-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

Code answers related to "rounded Textfield flutter"

Browse Popular Code Answers by Language