|
7 | 7 | [](https://www.apache.org/licenses/LICENSE-2.0) |
8 | 8 | <a href="https://github.com/piashcse"><img alt="GitHub" src="https://img.shields.io/static/v1?label=GitHub&message=piashcse&color=C51162"/></a> |
9 | 9 |
|
10 | | -Flutter Movie & TV Series is built with Riverpod, Clean Architecture, and GoRouter that showcases movies and TV series fetched from TMDB API. It includes now playing, popular, top-rated, and upcoming movies and TV series with support for pagination, search, and detailed views. |
| 10 | +Flutter Movie App built with Riverpod, Clean Architecture, and GoRouter that showcases movies and TV series fetched from TMDB API. It includes now playing, popular, top-rated, and upcoming Movies, TV series and Celebrity with support for pagination, search, and detailed views. |
11 | 11 | <p align="center"> |
12 | 12 | <img width="35%" src="https://github.com/piashcse/flutter-movie-clean-architecture/blob/main/screen_shots/home.png" /> |
13 | 13 | <img width="35%" src="https://github.com/piashcse/flutter-movie-clean-architecture/blob/main/screen_shots/detail.png" /> |
@@ -35,6 +35,11 @@ Flutter Movie & TV Series is built with Riverpod, Clean Architecture, and GoRout |
35 | 35 | - 🔍 Search TV Series |
36 | 36 | - 👤 Artist/Actor Detail Page with navigation from TV series cast |
37 | 37 |
|
| 38 | +### Celebrity |
| 39 | +- 🌟 Popular and Trending Celebrities/Persons sections |
| 40 | +- 🔍 Celebrity Search functionality |
| 41 | +- 👤 Celebrity Detail Page with navigation from movie/tv cast |
| 42 | + |
38 | 43 | ### Common Features |
39 | 44 | - 📃 Pagination (infinite scroll) |
40 | 45 | - 🔄 Bottom Navigation |
@@ -67,6 +72,34 @@ flutter_movie_clean_architecture/ |
67 | 72 | │ │ └── utils/ |
68 | 73 | │ │ └── utils.dart |
69 | 74 | │ ├── features/ |
| 75 | +│ │ ├── celebrity/ |
| 76 | +│ │ │ ├── data/ |
| 77 | +│ │ │ │ ├── datasources/ |
| 78 | +│ │ │ │ │ └── celebrity_remote_data_source.dart |
| 79 | +│ │ │ │ ├── models/ |
| 80 | +│ │ │ │ │ ├── person_model.dart |
| 81 | +│ │ │ │ │ └── person_list_response.dart |
| 82 | +│ │ │ │ └── repositories/ |
| 83 | +│ │ │ │ └── celebrity_repository_impl.dart |
| 84 | +│ │ │ ├── domain/ |
| 85 | +│ │ │ │ ├── entities/ |
| 86 | +│ │ │ │ │ └── person.dart |
| 87 | +│ │ │ │ ├── repositories/ |
| 88 | +│ │ │ │ │ └── celebrity_repository.dart |
| 89 | +│ │ │ │ └── usecases/ |
| 90 | +│ │ │ │ ├── get_popular_persons.dart |
| 91 | +│ │ │ │ ├── get_trending_persons.dart |
| 92 | +│ │ │ │ └── search_persons.dart |
| 93 | +│ │ │ └── presentation/ |
| 94 | +│ │ │ ├── pages/ |
| 95 | +│ │ │ │ ├── celebrity_main_page.dart |
| 96 | +│ │ │ │ ├── celebrity_search_page.dart |
| 97 | +│ │ │ │ ├── popular_persons_page.dart |
| 98 | +│ │ │ │ └── trending_persons_page.dart |
| 99 | +│ │ │ ├── providers/ |
| 100 | +│ │ │ │ └── celebrity_provider.dart |
| 101 | +│ │ │ └── widgets/ |
| 102 | +│ │ │ └── person_card.dart |
70 | 103 | │ │ ├── movie/ |
71 | 104 | │ │ │ ├── data/ |
72 | 105 | │ │ │ │ ├── datasources/ |
|
0 commit comments