Answers for "flutter underline input border color"

1

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

Code answers related to "flutter underline input border color"

Browse Popular Code Answers by Language