readme static method
Implementation
static String readme(ProjectConfig c) {
final title = StringUtils.toTitleCase(c.projectName);
return '''
# $title
${c.description}
Generated by [srik_cli](https://pub.dev/packages/srik_cli).
## Configuration
- **Architecture:** ${c.architecture.label}
- **State management:** Riverpod
- **Routing:** go_router
- **Networking:** Dio
- **Local storage:** shared_preferences
- **Design preset:** ${c.designPreset.id}
- **Gradient theme:** ${c.useGradient ? 'enabled' : 'disabled'}
- **Spacing scale:** ${c.spacingScale.id}
## Run
```bash
flutter pub get
flutter run
```
## Add features
```bash
srik add feature <feature_name>
```
## License
Add your license here.
''';
}