-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathboochat_ui.code-workspace
71 lines (71 loc) · 1.56 KB
/
boochat_ui.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#22229a",
"activityBar.activeBorder": "#d12e2e",
"activityBar.background": "#22229a",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#d12e2e",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#22229a",
"statusBar.background": "#191970",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#22229a",
"statusBarItem.remoteBackground": "#191970",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#191970",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#19197099",
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799"
},
"peacock.color": "#191970"
},
"extensions": {
"recommendations": [
"dart-code.flutter",
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Web",
"request": "launch",
"type": "dart",
"deviceId": "chrome",
"args": [
"--web-port",
"4200"
]
},
{
"name": "My Redmi",
"request": "launch",
"type": "dart",
"deviceId": "rkwgu4byvc4hbaqk"
},
{
"name": "Emulator Phone",
"request": "launch",
"type": "dart",
"deviceId": "emulator-5554",
"args": [
"--enable-software-rendering"
]
},
{
"name": "Linux",
"request": "launch",
"type": "dart",
"deviceId": "linux-x64"
}
]
}
}