examples/marvel/README.md
A Flutter app that displays the list of comics from https://developer.marvel.com/
This example demonstrates how to:
To run this example, you will need to create a configurations.json placed in the assets folder:
example/
pubspec.yaml
README.md << This readme
assets/
configurations.json << Where to place the file
lib/
The content of this file looks like this:
{
"public_key": "1234",
"private_key": "5678"
}
Where public_key and private_key are obtained from https://developer.marvel.com/account
Since this project uses freezed for code generation, be sure to run the generator with the following command before attempting to build/run the application:
dart run build_runner build -d