forked from csells/go_router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
124 lines (124 loc) · 2.67 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"version": "0.2.0",
"configurations": [
{
"name": "Declarative Routes",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/main.dart"
},
{
"name": "Initial Location",
"request": "launch",
"type": "dart",
"cwd": "example",
"program": "lib/init_loc.dart"
},
{
"name": "Sub-routes",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/sub_routes.dart"
},
{
"name": "Route Redirection",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/redirection.dart"
},
{
"name": "Query Parameters",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/query_params.dart"
},
{
"name": "Extra Parameter",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/extra_param.dart"
},
{
"name": "Named Routes",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/named_routes.dart"
},
{
"name": "Custom Transitions",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/transitions.dart"
},
{
"name": "URL Strategy",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/url_strategy.dart"
},
{
"name": "Async Data",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/async_data.dart"
},
{
"name": "Nested Navigation",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/nested_nav.dart"
},
{
"name": "Navigation Builder",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/nav_builder.dart"
},
{
"name": "State Restoration",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/state_restoration.dart"
},
{
"name": "Cupertino",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/cupertino.dart"
},
{
"name": "Push",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/push.dart"
},
{
"name": "Navigator Integration",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/navigator_integration.dart"
},
{
"name": "Books",
"type": "dart",
"request": "launch",
"cwd": "example",
"program": "lib/books/main.dart"
},
]
}