Skip to content

Instantly share code, notes, and snippets.

@Skylled
Last active July 5, 2017 04:48
Show Gist options
  • Save Skylled/5808d15d4e6d2eccf87095f4550a7c78 to your computer and use it in GitHub Desktop.
Save Skylled/5808d15d4e6d2eccf87095f4550a7c78 to your computer and use it in GitHub Desktop.
Flutter StatefulWidget VS-Code/Dart-Code snippet
{
"Stateful + State": {
"prefix": "stateful",
"body": [
"class ${1:Class} extends StatefulWidget {",
" @override",
" ${2:State} createState() => new ${2:State}();",
"}",
"",
"class ${2:State} extends State<${1:Class}> {",
" @override",
" Widget build(BuildContext context) {",
" $0",
" }",
"}"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment