Skip to content

Instantly share code, notes, and snippets.

@valterh4ck3r
Last active November 8, 2019 20:20
Show Gist options
  • Save valterh4ck3r/b1dd19c53355bd834236f4d9c641defd to your computer and use it in GitHub Desktop.
Save valterh4ck3r/b1dd19c53355bd834236f4d9c641defd to your computer and use it in GitHub Desktop.
Rounded Text Field Example
Container(
width: MediaQuery.of(context).size.width / 1.2,
height: 70,
child: TextField(
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.all(
Radius.circular(40),
),
borderSide: BorderSide(width: 2)
),
filled: true,
hintStyle: TextStyle(color: Colors.grey[800]),
hintText: "Insira seu nome",
labelText: "Nome",
prefixIcon: Icon(Icons.person),
fillColor: Colors.white70),
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment