diff --git a/packages/wyatt_form_bloc/.gitignore b/packages/wyatt_form_bloc/.gitignore new file mode 100644 index 00000000..65c34dc8 --- /dev/null +++ b/packages/wyatt_form_bloc/.gitignore @@ -0,0 +1,10 @@ +# Files and directories created by pub. +.dart_tool/ +.packages + +# Conventional directory for build outputs. +build/ + +# Omit committing pubspec.lock for library packages; see +# https://dart.dev/guides/libraries/private-files#pubspeclock. +pubspec.lock diff --git a/packages/wyatt_form_bloc/CHANGELOG.md b/packages/wyatt_form_bloc/CHANGELOG.md new file mode 100644 index 00000000..c73cae1e --- /dev/null +++ b/packages/wyatt_form_bloc/CHANGELOG.md @@ -0,0 +1,3 @@ +## 0.0.0 + +- Initial version. diff --git a/packages/wyatt_form_bloc/README.md b/packages/wyatt_form_bloc/README.md new file mode 100644 index 00000000..8b55e735 --- /dev/null +++ b/packages/wyatt_form_bloc/README.md @@ -0,0 +1,39 @@ + + +TODO: Put a short description of the package here that helps potential users +know whether this package might be useful for them. + +## Features + +TODO: List what your package can do. Maybe include images, gifs, or videos. + +## Getting started + +TODO: List prerequisites and provide or point to information on how to +start using the package. + +## Usage + +TODO: Include short and useful examples for package users. Add longer examples +to `/example` folder. + +```dart +const like = 'sample'; +``` + +## Additional information + +TODO: Tell users more about the package: where to find more information, how to +contribute to the package, how to file issues, what response they can expect +from the package authors, and more. diff --git a/packages/wyatt_form_bloc/analysis_options.yaml b/packages/wyatt_form_bloc/analysis_options.yaml new file mode 100644 index 00000000..2f6092c4 --- /dev/null +++ b/packages/wyatt_form_bloc/analysis_options.yaml @@ -0,0 +1 @@ +include: package:wyatt_analysis/analysis_options.yaml \ No newline at end of file diff --git a/packages/wyatt_form_bloc/pubspec.yaml b/packages/wyatt_form_bloc/pubspec.yaml new file mode 100644 index 00000000..8749a0f9 --- /dev/null +++ b/packages/wyatt_form_bloc/pubspec.yaml @@ -0,0 +1,19 @@ +name: wyatt_form_bloc +description: Manage forms in a Flutter app with Bloc +version: 0.0.0 + +environment: + sdk: '>=2.16.2 <3.0.0' + +dependencies: + bloc: ^8.0.3 + meta: ^1.7.0 + +dev_dependencies: + test: ^1.21.0 + + wyatt_analysis: + git: + url: https://git.wyatt-studio.fr/Wyatt-FOSS/wyatt-packages + ref: wyatt_analysis-v2.0.0 + path: packages/wyatt_analysis