If I have many actions in my app like
( get popular movies, get trending movies , get new movies , get top rated movies)
each one represent single screen with it's own state
should I use one bloc for all actions
or have one bloc per action ?
all these actions return the same model with different data , how can I even return different data in same bloc for different actions ?