leandrucarvalho / flutter_the_movie_list

Projeto para listar os filmes da marvel usando flutter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

the_movie_list

Report Bug

πŸš€ Screenshots

HomePage DetailsPage

πŸ› οΈ Installation Steps

  1. Clone the repository
git clone https://github.com/leandrucarvalho/flutter_the_movie_list.git
  1. Change the working directory
cd flutter_the_movie_list
  1. Install dependencies
flutter pub get
  1. Run the app
flutter run

🌟 You are all set!

🍰 Contributing

Please contribute using GitHub Flow. Create a branch, add commits, and open a pull request.

πŸ’» Built with

πŸ“˜ Comments

  • create dio_service_imp.dart file inside the service folder, i have hidden this file because of the api token:
class DioServiceImp implements DioService {
  @override
  Dio getDio() {
    return Dio(
      BaseOptions(
        baseUrl: 'https://api.themoviedb.org/4/list/1?language=pt-BR',
        headers: {
          'contet-type': 'application/json;charset=utf-8',
          'authorization':
              'Bearer api token'
        },
      ),
    );
  }
}

πŸ’‘ Credits

  • Deivid Willyan | Flutter: Several disciplines from the Flutter, Dart and Architecture world, introductory to advanced courses and architecture, aimed at training highly competent professionals.
  • The Movie Database API: The API service is for those of you interested in using our movie, TV show or actor images and/or data in your application. Our API is a system we provide for you and your team to programmatically fetch and use our data and/or images.

Developed with ❀️ in Flutter

About

Projeto para listar os filmes da marvel usando flutter


Languages

Language:Dart 34.8%Language:C++ 32.1%Language:CMake 26.6%Language:HTML 2.6%Language:C 2.0%Language:Swift 1.6%Language:Kotlin 0.2%Language:Objective-C 0.1%