xgqfrms / vscode

:cn: :rocket: Visual Studio Code & VSCode Code Snippets All in One 🎉
https://vscode.xgqfrms.xyz
MIT License
3 stars 1 forks source link

Dart Template & code snippets #34

Open xgqfrms opened 4 years ago

xgqfrms commented 4 years ago

Dart Template & code snippets

dart & dt

{
  "Dart Template": {
    "prefix": "dt",
    "body": [
      "/**",
      " * ",
      " * @author xgqfrms",
      " * @license MIT",
      " * @copyright xgqfrms",
      " * @created 2019-01-01",
      " * ",
      " * @description $2",
      " * @augments $3",
      " * @example $4",
      " * ",
      " */",
      "",
      "void main() {",
      "  dynamic d;",
      "  var x = \"\";",
      "  int i = 0;",
      "  double f = 1.0;",
      "  String s = \"\";",
      "  print(\"x = ${x}\");",
      "  print(\"i = ${i}\");",
      "  print(\"f = ${f}\");",
      "  print(\"s = ${s}\");",
      "  print(\"Hello Dart! 🎯\");",
      "  // do something...",
      "  // return null;",
      "}",
      ""
    ],
    "description": "Dart Template & code snippets!"
  }
}