auto_strings 1.0.2+3
auto_strings: ^1.0.2+3 copied to clipboard
A simple Dart/Flutter code generator that converts plain text into static const String fields.
📄 CHANGELOG.md #
1.0.2+3 #
- 📚 Added comprehensive example section with working demos
- ✨ Included sample
main.dartdemonstrating real-world usage - 📝 Added example
README.mdwith step-by-step instructions - 🎯 Example now appears on pub.dev for better discoverability
- 🐛 Fixed: Removed
import 'package:flutter/foundation.dart'dependency - 🔧 Replaced
debugPrint()with standardprint()for better compatibility
1.0.2+2 #
- Docs updated.
1.0.2+1 #
- Docs updated.
1.0.2 #
Features #
- ✨ Added
AutoStringsGeneratorto generate Dart string constants from input text files - 🔤 Implemented camelCase key conversion with duplicate handling
- 🛡️ Escaped special characters (
",\,\n,\t) for Dart string safety - 📜 Multiline-safe string handling and empty line filtering
- 📦 Default class name set to
AppStringsif not provided
1.0.1 #
- Issue Tracker added.
1.0.0 #
- Initial release of Auto Strings.
- Generates static constants from text file.