Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created March 17, 2018 03:30
Show Gist options
  • Save Nash0x7E2/219abbb0f402a4540406fcdb7f0b7891 to your computer and use it in GitHub Desktop.
Save Nash0x7E2/219abbb0f402a4540406fcdb7f0b7891 to your computer and use it in GitHub Desktop.
new Padding(
padding: const EdgeInsets.only(top: 78.0),
child: new Container(
width: 302.0,
child: new TextField(
onChanged: (String text) => setState(() {
name = text;
}),
decoration: new InputDecoration(
hintText: 'Enter your name',
hintStyle: new TextStyle(color: Colors.white)),
),
)),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment