Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
432 changes: 0 additions & 432 deletions CODE_QUALITY_REVIEW.md

This file was deleted.

282 changes: 0 additions & 282 deletions CODE_REVISION_SUMMARY.md

This file was deleted.

13 changes: 8 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ cd theme_kit
dart pub get
```

3. Run the example:
3. Run an example:
```bash
cd example
cd examples/basic
dart run theme_kit:generate
flutter run
```
Expand All @@ -32,10 +32,13 @@ theme_kit/
│ ├── src/
│ │ ├── config/ # Configuration models
│ │ ├── generator/ # Code generation logic
│ │ └── templates/ # Code templates
│ │ ├── templates/ # Code templates
│ │ └── utils/ # Shared utilities
│ └── theme_kit.dart # Main library export
├── example/ # Example Flutter app
└── theme_kit.yaml # Example configuration
├── examples/ # Example Flutter apps
│ ├── basic/ # Basic usage example
│ └── hive_persisted/ # Advanced example with persistence
└── theme_kit.yaml # Example configuration
```

## How Theme Generation Works
Expand Down
Loading