https://github.com/flarebyte/grand_copperframe
The higher level data model for copperframe
https://github.com/flarebyte/grand_copperframe
dart dart-package
Last synced: about 1 year ago
JSON representation
The higher level data model for copperframe
- Host: GitHub
- URL: https://github.com/flarebyte/grand_copperframe
- Owner: flarebyte
- License: mit
- Created: 2024-10-12T18:34:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-14T18:23:01.000Z (over 1 year ago)
- Last Synced: 2025-03-21T17:09:26.208Z (about 1 year ago)
- Topics: dart, dart-package
- Language: Dart
- Homepage:
- Size: 949 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# grand\_copperframe

> The higher level data model for copperframe
The data model used by copperframe components

Highlights:
- Create friendly user message
- Create a skeleton for rules with friendly messages
A few examples:
Create a message:
```dart
final message = CopperframeMessage( label: 'This is an info
message', level: CopperframeMessageLevel.info, category: 'usage', );
```
Create a rule:
```dart
final rule = CopperframeFieldRule( name: 'Length Check', options:
{'min': '1', 'max': '255'}, successMessages: [ failureMessages: [
message ], );
```
## Documentation and links
- [Code Maintenance :wrench:](MAINTENANCE.md)
- [Code Of Conduct](CODE_OF_CONDUCT.md)
- [Contributing :busts\_in\_silhouette: :construction:](CONTRIBUTING.md)
- [Architectural Decision Records :memo:](DECISIONS.md)
- [Contributors
:busts\_in\_silhouette:](https://github.com/flarebyte/grand_copperframe/graphs/contributors)
- [Dependencies](https://github.com/flarebyte/grand_copperframe/network/dependencies)
- [Glossary
:book:](https://github.com/flarebyte/overview/blob/main/GLOSSARY.md)
- [Software engineering principles
:gem:](https://github.com/flarebyte/overview/blob/main/PRINCIPLES.md)
- [Overview of Flarebyte.com ecosystem
:factory:](https://github.com/flarebyte/overview)
- [Dart dependencies](DEPENDENCIES.md)
- [Usage](USAGE.md)
- [Example](example/example.dart)
## Related
- [form\_validator](https://pub.dev/packages/form_validator)