iamantoniodinuzzo / CineMates

CineMates is a modern android application for movie fans in which you will be able to search for movies and consult information provided by The Movie DB.
GNU General Public License v3.0
15 stars 3 forks source link

[Feature Request / Suggestion]: Movie details as an Activity #228

Closed iamantoniodinuzzo closed 9 months ago

iamantoniodinuzzo commented 11 months ago

Suggestion / Feature Request

The fragment involved in showing the details of a movie should be converted to an Activity.

Context

Currently in the branch dedicated to modularization, the details of a movie are exposed via fragment with a view pager inside to show various details of a movie.

By converting such a fragment into an Activity using the Jetpack Navigation library anyway we will make the various features of the application more independent.

Currently, taking advantage of modularization, the view models of this feature refer to the main activity and this causes problems in managing the view model's Flow lifecycle.

By making this feature an Activity we could attach those view models to the main activity MovieDetailsActivity by detaching it from the rest.