-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve fornted app architecure (#158)
* feat(fronted): add packages * fix md files * add melos files * Update README.md * Update README.md * Update README.md * Update README.md * feat: add SecureStorageService * feat: add catalyst_voices_shared, upgrade flutter * Update project.dic * Update README.md * Update README.md * Update README.md
- Loading branch information
Showing
66 changed files
with
689 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# VSCode related | ||
.vscode/* | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
pubspec.lock | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json | ||
|
||
# Test related | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Catalyst Voices Blocs |
12 changes: 12 additions & 0 deletions
12
catalyst_voices/packages/catalyst_voices_blocs/analysis_options.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
include: package:catalyst_analysis/analysis_options.1.0.0.yaml | ||
|
||
analyzer: | ||
exclude: [ | ||
build/**, | ||
lib/*.g.dart, | ||
lib/generated/** | ||
] | ||
|
||
linter: | ||
rules: | ||
public_member_api_docs: false |
20 changes: 20 additions & 0 deletions
20
catalyst_voices/packages/catalyst_voices_blocs/coverage_badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_blocs/lib/catalyst_voices_blocs.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
library catalyst_voices_blocs; | ||
|
||
export 'src/catalyst_voices_blocs.dart'; |
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_blocs/lib/src/catalyst_voices_blocs.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class CatalystVoicesBlocs { | ||
const CatalystVoicesBlocs(); | ||
} |
20 changes: 20 additions & 0 deletions
20
catalyst_voices/packages/catalyst_voices_blocs/pubspec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: catalyst_voices_blocs | ||
description: Catalyst Voices Blocs. | ||
version: 0.1.0+1 | ||
publish_to: none | ||
|
||
environment: | ||
sdk: ">=3.2.0 <4.0.0" | ||
flutter: 3.16.1 | ||
|
||
dependencies: | ||
bloc: ^8.1.2 | ||
bloc_concurrency: ^0.2.2 | ||
flutter: | ||
sdk: flutter | ||
|
||
dev_dependencies: | ||
bloc_test: ^9.1.4 | ||
catalyst_analysis: | ||
path: ../../../catalyst_voices_packages/catalyst_analysis | ||
test: ^1.24.9 |
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_blocs/test/src/catalyst_voices_blocs_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// ignore_for_file: prefer_const_constructors | ||
|
||
void main() {} |
1 change: 0 additions & 1 deletion
1
catalyst_voices/packages/catalyst_voices_localization/lib/catalyst_voices_localization.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/// A Very Good Project created by Very Good CLI. | ||
library catalyst_voices_localization; | ||
|
||
export 'src/catalyst_voices_localization.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See https://www.dartlang.org/guides/libraries/private-files | ||
|
||
# Files and directories created by pub | ||
.dart_tool/ | ||
.packages | ||
build/ | ||
pubspec.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Catalyst Voices Models |
12 changes: 12 additions & 0 deletions
12
catalyst_voices/packages/catalyst_voices_models/analysis_options.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
include: package:catalyst_analysis/analysis_options.1.0.0.yaml | ||
|
||
analyzer: | ||
exclude: [ | ||
build/**, | ||
lib/*.g.dart, | ||
lib/generated/** | ||
] | ||
|
||
linter: | ||
rules: | ||
public_member_api_docs: false |
20 changes: 20 additions & 0 deletions
20
catalyst_voices/packages/catalyst_voices_models/coverage_badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_models/lib/catalyst_voices_models.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
library catalyst_voices_models; | ||
|
||
export 'src/catalyst_voices_models.dart'; |
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_models/lib/src/catalyst_voices_models.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class CatalystVoicesModels { | ||
const CatalystVoicesModels(); | ||
} |
29 changes: 29 additions & 0 deletions
29
catalyst_voices/packages/catalyst_voices_models/melos_catalyst_voices_models.iml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module type="JAVA_MODULE" version="4"> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" /> | ||
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" /> | ||
<excludeFolder url="file://$MODULE_DIR$/.idea" /> | ||
<excludeFolder url="file://$MODULE_DIR$/.pub" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/.dart_tool" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/.idea" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/.pub" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/build" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/android/.idea" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/ios/Flutter" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/ios/Pods" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/ios/.symlinks" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/macos/Flutter" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/macos/Pods" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/macos/.symlinks" /> | ||
</content> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" name="Dart SDK" level="project" /> | ||
<orderEntry type="library" name="Flutter Plugins" level="project" /> | ||
<orderEntry type="library" name="Dart Packages" level="project" /> | ||
</component> | ||
</module> |
17 changes: 17 additions & 0 deletions
17
catalyst_voices/packages/catalyst_voices_models/pubspec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: catalyst_voices_models | ||
description: Catalyst Voices Models. | ||
version: 0.1.0+1 | ||
publish_to: none | ||
|
||
environment: | ||
sdk: ">=3.2.0 <4.0.0" | ||
flutter: 3.16.1 | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
|
||
dev_dependencies: | ||
catalyst_analysis: | ||
path: ../../../catalyst_voices_packages/catalyst_analysis | ||
test: ^1.24.9 |
11 changes: 11 additions & 0 deletions
11
catalyst_voices/packages/catalyst_voices_models/test/src/catalyst_voices_models_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// ignore_for_file: prefer_const_constructors | ||
import 'package:catalyst_voices_models/catalyst_voices_models.dart'; | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
group('CatalystVoicesModels', () { | ||
test('can be instantiated', () { | ||
expect(CatalystVoicesModels(), isNotNull); | ||
}); | ||
}); | ||
} |
7 changes: 7 additions & 0 deletions
7
catalyst_voices/packages/catalyst_voices_repositories/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See https://www.dartlang.org/guides/libraries/private-files | ||
|
||
# Files and directories created by pub | ||
.dart_tool/ | ||
.packages | ||
build/ | ||
pubspec.lock |
1 change: 1 addition & 0 deletions
1
catalyst_voices/packages/catalyst_voices_repositories/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Catalyst Voices Repositories |
12 changes: 12 additions & 0 deletions
12
catalyst_voices/packages/catalyst_voices_repositories/analysis_options.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
include: package:catalyst_analysis/analysis_options.1.0.0.yaml | ||
|
||
analyzer: | ||
exclude: [ | ||
build/**, | ||
lib/*.g.dart, | ||
lib/generated/** | ||
] | ||
|
||
linter: | ||
rules: | ||
public_member_api_docs: false |
20 changes: 20 additions & 0 deletions
20
catalyst_voices/packages/catalyst_voices_repositories/coverage_badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
catalyst_voices/packages/catalyst_voices_repositories/lib/catalyst_voices_repositories.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
library catalyst_voices_repositories; | ||
|
||
export 'src/catalyst_voices_repositories.dart'; |
3 changes: 3 additions & 0 deletions
3
...st_voices/packages/catalyst_voices_repositories/lib/src/catalyst_voices_repositories.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class CatalystVoicesRepositories { | ||
const CatalystVoicesRepositories(); | ||
} |
Oops, something went wrong.