Beautiful flutter app where you can search movies. The app uses OMDb API service to for movies data.
The splash screen has Rive(Flare) animation is displayed which can be found here. The app uses Provider
for the movies data to be shared among widgets.
- Organize and refactor the code and files
Clone the repo
git clone https://github.com/AkashSDas/flutter-movies
Get inside the project dir and install dependencies
cd flutter-movies
flutter pub get
Open a simulator or connect a device and after that execute the below command to run the flutter app
flutter run
To make http requests
for fetching the movies data we have to add to fields in android/
and ios/
(this is already added in this project). If not done then you will get an error of
Bad state: Insecure HTTP is not allowed by platform: <api-url>
To avoid this error, follow the stackoverflow post.