We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cef24f commit cddd9b6Copy full SHA for cddd9b6
.gitignore
@@ -24,9 +24,6 @@ node_modules/
24
./package.json
25
android/.idea/
26
27
-# Visual Studio Code related
28
-.vscode/
29
-
30
# Flutter/Dart/Pub related
31
**/doc/api/
32
.dart_tool/
.vscode/launch.json
@@ -0,0 +1,19 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Run Web",
6
+ "request": "launch",
7
+ "type": "dart",
8
+ "program": "example/lib/main.dart",
9
+ "args": [
10
+ "--web-renderer",
11
+ "canvaskit",
12
+ "--web-port",
13
+ "42765",
14
+ "-d",
15
+ "chrome"
16
+ ]
17
+ }
18
19
+}
0 commit comments