Skip to content

Commit 266036e

Browse files
authored
Merge pull request #367 from icapps/feature/widgebook
Feature/widgebook
2 parents fd6aed2 + cb83ec3 commit 266036e

File tree

133 files changed

+184503
-925
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+184503
-925
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,4 @@ Gemfile.lock
9393

9494
# Fvm
9595
.fvm/
96-
/lib/generated_plugin_registrant.dart
9796
/test/coverage_helper_test.dart

.vscode/launch.json

Lines changed: 42 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,33 @@
44
// For more information, visit: https:go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7-
{
8-
"name": "dev",
9-
"request": "launch",
10-
"type": "dart",
11-
"program": "lib/main.dart",
12-
"args": [
13-
"--flavor=dev"
14-
]
15-
},
16-
{
17-
"name": "alpha",
18-
"request": "launch",
19-
"type": "dart",
20-
"program": "lib/main_alpha.dart",
21-
"args": [
22-
"--flavor=alpha"
23-
]
24-
},
25-
{
26-
"name": "beta",
27-
"request": "launch",
28-
"type": "dart",
29-
"program": "lib/main_beta.dart",
30-
"args": [
31-
"--flavor=beta"
32-
]
33-
},
7+
{
8+
"name": "dev",
9+
"request": "launch",
10+
"type": "dart",
11+
"program": "lib/main.dart",
12+
"args": [
13+
"--flavor=dev"
14+
]
15+
},
16+
{
17+
"name": "alpha",
18+
"request": "launch",
19+
"type": "dart",
20+
"program": "lib/main_alpha.dart",
21+
"args": [
22+
"--flavor=alpha"
23+
]
24+
},
25+
{
26+
"name": "beta",
27+
"request": "launch",
28+
"type": "dart",
29+
"program": "lib/main_beta.dart",
30+
"args": [
31+
"--flavor=beta"
32+
]
33+
},
3434
{
3535
"name": "dummy",
3636
"request": "launch",
@@ -40,14 +40,20 @@
4040
"--flavor=dev"
4141
]
4242
},
43-
{
44-
"name": "prod",
45-
"request": "launch",
46-
"type": "dart",
47-
"program": "lib/main_prod.dart",
48-
"args": [
49-
"--flavor=prod"
50-
]
51-
}
43+
{
44+
"name": "prod",
45+
"request": "launch",
46+
"type": "dart",
47+
"program": "lib/main_prod.dart",
48+
"args": [
49+
"--flavor=prod"
50+
]
51+
},
52+
{
53+
"name": "widgetbook",
54+
"request": "launch",
55+
"type": "dart",
56+
"program": "lib/widgetbook/widgetbook.dart",
57+
}
5258
]
5359
}

analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ analyzer:
1616
- 'lib/util/license.dart'
1717
- 'test/coverage_helper_test.dart'
1818
- 'tool/'
19+
- 'widgetbook/'
1920

2021
linter:
2122
rules:

lib/database/flutter_template_database.g.dart

Lines changed: 101 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)