Answers for "border radius for the input colors"

CSS
1

rounded input css

input[type="text"]{
  border-radius: 10px;
}
Posted by: Guest on August-07-2021
2

flutter InputDecoration border radius color

border: OutlineInputBorder(
	// width: 0.0 produces a thin "hairline" border
    borderRadius: BorderRadius.all(Radius.circular(90.0)),
    borderSide: BorderSide.none,
    ...
)
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language