Skip to content

Commit ba554f0

Browse files
authored
Update README.md
1 parent f6051f7 commit ba554f0

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
88
<a href="https://github.com/piashcse"><img alt="GitHub" src="https://img.shields.io/static/v1?label=GitHub&message=piashcse&color=C51162"/></a>
99

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.
1111
<p align="center">
1212
<img width="35%" src="https://github.com/piashcse/flutter-movie-clean-architecture/blob/main/screen_shots/home.png" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
1313
<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
3535
- 🔍 Search TV Series
3636
- 👤 Artist/Actor Detail Page with navigation from TV series cast
3737

38+
### Celebrity
39+
- 🌟 Popular and Trending Celebrities/Persons sections
40+
- 🔍 Celebrity Search functionality
41+
- 👤 Celebrity Detail Page with navigation from movie/tv cast
42+
3843
### Common Features
3944
- 📃 Pagination (infinite scroll)
4045
- 🔄 Bottom Navigation
@@ -67,6 +72,34 @@ flutter_movie_clean_architecture/
6772
│ │ └── utils/
6873
│ │ └── utils.dart
6974
│ ├── 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
70103
│ │ ├── movie/
71104
│ │ │ ├── data/
72105
│ │ │ │ ├── datasources/

0 commit comments

Comments
 (0)