├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── README.md └── main.dart ├── lib ├── camel_case_to_words.dart └── enum_to_string.dart ├── preflight_checks.sh ├── pubspec.lock ├── pubspec.yaml ├── test ├── benchmark_test.dart └── enum_to_string_test.dart └── tool └── check.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/example/README.md -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/camel_case_to_words.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/lib/camel_case_to_words.dart -------------------------------------------------------------------------------- /lib/enum_to_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/lib/enum_to_string.dart -------------------------------------------------------------------------------- /preflight_checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/preflight_checks.sh -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/benchmark_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/test/benchmark_test.dart -------------------------------------------------------------------------------- /test/enum_to_string_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/test/enum_to_string_test.dart -------------------------------------------------------------------------------- /tool/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rknell/flutterEnumsToString/HEAD/tool/check.sh --------------------------------------------------------------------------------