Skip to content

Commit c02da67

Browse files
committed
Release v.1.0.0
0 parents  commit c02da67

783 files changed

Lines changed: 51678 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26+
/pubspec.lock
27+
**/doc/api/
28+
.dart_tool/
29+
.packages
30+
build/
31+
.pub-cache/
32+
.pub/
33+
/build/
34+
/packages/app/build/

AUTHORS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Flutter project. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Aspirity Inc.
7+
Pavel Gershevich <fognaturedevelop@gmail.com>
8+
Mikhail Chernetsov <smixalys@gmail.com>
9+
Zakhar Novikov <zakharzokhar@gmail.com>
10+
Artyom Mukhin <artyom.mukhin@gmail.com>
11+
Marat Gaifutdinov <ma.gaifutdinov@gmail.com>

CHANGELOG.md

Whitespace-only changes.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
EasyDev Flutter is ui kit that contains few packages that allow user to construct apps.
2+
3+
easydev_base_ui - commonly used widgets.
4+
5+
easydev_basics - base widgets that allows to build app from scratch, using only easydev widgets.
6+
7+
easydev_forms - various widgets user to enter different forms of data.
8+
9+
easydev_story_view - package that contains widgets for stories

melos.yaml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: easydev_mobile
2+
3+
packages:
4+
- packages/**
5+
6+
scripts:
7+
analyze:
8+
run: melos exec --fail-fast -- "flutter analyze . --no-fatal-infos"
9+
description: Run static analysis on all packages
10+
11+
format:
12+
run: melos exec --fail-fast -- "flutter format --set-exit-if-changed . -l 100"
13+
description: Run Flutter format on all packages
14+
format:all:
15+
run: melos exec --fail-fast -- "flutter format . -l 100"
16+
description: Run Flutter format on all packages
17+
18+
test:
19+
run: melos exec -c 1 -- "flutter test --no-pub"
20+
description: Run tests on packages with Flutter
21+
select-package:
22+
dir-exists: test
23+
ignore:
24+
- "*packages.easydev_base_ui.example*"
25+
test:coverage:
26+
run: melos exec -c 1 -- "flutter test --coverage"
27+
select-package:
28+
dir-exists: test
29+
ignore:
30+
- "*packages.easydev_base_ui.example*"
31+
test:coverage:concurrency:
32+
run: melos exec -c 5 -- "flutter test --coverage"
33+
select-package:
34+
dir-exists: test
35+
ignore:
36+
- "*packages.easydev_base_ui.example*"
37+
test:html:
38+
run: melos exec -c 1 --fail-fast -- "genhtml coverage_report/lcov.info --output=coverage"
39+
description: Generate line coverage report from lcov.info.
40+
select-package:
41+
dir-exists: coverage_report
42+
ignore:
43+
- "*packages.easydev_base_ui.example*"
44+
test:all:
45+
run: melos run test --no-select
46+
test:all:coverage:
47+
run: |
48+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --create" && \
49+
melos run test:coverage --no-select && \
50+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --combine" && \
51+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --clean" && \
52+
melos run test:html
53+
test:all:coverage:concurrency:
54+
run: |
55+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --create" && \
56+
melos run test:coverage:concurrency --no-select && \
57+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --combine" && \
58+
melos exec -- "sh \$MELOS_ROOT_PATH/coverage_helper.sh \$MELOS_PACKAGE_NAME --clean" && \
59+
melos run test:html
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26+
/pubspec.lock
27+
**/doc/api/
28+
.dart_tool/
29+
.packages
30+
build/

packages/easydev_base_ui/.metadata

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
8+
channel: stable
9+
10+
project_type: package
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## 1.0.0
2+
3+
#### Initial version of the library
4+
5+
Includes base widgets for EasyDev Flutter.

packages/easydev_base_ui/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO: Add your license here.

0 commit comments

Comments
 (0)