Giter VIP home page Giter VIP logo

intro_flutter_project's Introduction

Flutter Intro Project Evaluation

Requirements for running the project

  1. An IDE or Editor to run Flutter in (VSCode or Android Studio)
  2. Flutter plugin installed and configured
  3. iOS or Android Simulator to view application
  4. An set of Marvel API keys. They require a user to have a public and private key, as well as creating a hash to send to their API.

Run flutter doctor after the install and configuation to make sure that everything is configured correctly and Flutter should run. If you install Flutter through VScode extensions is should include all the Dart supporting installations as well.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Requirements

This project is designed to test a canidates Flutter/Dart knowledge. The project is designed around the Marvel Api and requires the public and private keys generated for the canidate to access the API.

The Marvel API requires a hash based on a time stamp, the public key, and the private key. Here is a quick way to set the parameters for that call:

    Map<String, String> setQueryParams(int limit) {
        var ts = DateTime.now().toString();
        var hash = crypto.md5.convert(utf8.encode(ts + "Your Private Key" + "Your Public Key")).toString();

        final queryParams = {
        "apikey": "Your Public Key"
        "ts": ts,
        "hash": hash,
        "limit": "$limit",
        };

        return queryParams;
    }

Model

Do to the complexity of the Marvel API Characters and Character models, we have included the models ahead of time for you to use. Make use of them how you see fit.

Completion Criteria

  1. Successfully make a call to the Marvel API and return a list of characters
  2. Make sure the first page navigates to the list page correctly
  3. Create a list view that displays the list of characters returned
  4. Being able to tap on an item in the list and see detail new view
  5. Making a second call to get the characters detail information
  6. Utilizing Provider or other state managment solution
  7. Possible writing of widget tests to validate widgets and views

intro_flutter_project's People

Contributors

jessecanderson avatar kmoorejr9 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.