A basic Flutter app showing:
- Interaction with network (used TMDB api)
- MVP Pattern
- Database implementation by:
- Caching list of movies for offline access (TODO: Caching Images)
- Saving
liked
movies
- Implementation of FutureBuilders
factory
constructor pattern of Dart- Using
pathprovider
for creating and accessing a database file (works in both iOS and Android) - Screen Transaction animation using
Hero
andInkWell
1.For installing and setting up Flutter
2.You need a TMDB API Keyfor which you can go to this link.
When you get the key, place it in network_data.dart
.
Copyright 2018 Dilpreet Singh (dilpreet96)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.