config_reader 1.0.0 copy "config_reader: ^1.0.0" to clipboard
config_reader: ^1.0.0 copied to clipboard

A flutter library for reading config files online or offline.

What is config_reader #

A flutter library for reading config files online or offline.
github

What format does config_reader support #

.properties

readProperties
readOnlineProperties

.json

readJson
readOnlineJson

.yaml

readYaml
readOnlineYaml

Result type #

All method will return a MAP for result. As json and yaml files are designed to support map or LIST as root, config_reader will add a root node for "list".

For example:
json:

[
  "Cat",
  "Dog",
  "Goldfish"
]

yaml:

- Cat
- Dog
- Goldfish

Will return:

{list: [Cat, Dog, Goldfish]}

More case #

see test/config_reader_test.dart

0
likes
30
pub points
26%
popularity

Publisher

unverified uploader

A flutter library for reading config files online or offline.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter, http, yaml

More

Packages that depend on config_reader