Flutter App developed with MobX, Flutter Modular and Dio
{
On the first screen we have a list of all the Star Wars characters.
We can access any character to access the details of that character and see a list of the films he participated in.
We can also access any of these films to see some details about it, such as, director, release date, producers, and the name.
}
Currently the app makes all 9 requests to the characters API at once, which can impact the performance of the app.
If you want to change this, I recommend using a lib called Lazy_Load_ScrollView that will make the next list of characters only load after the user swipes down.