Final challenge
There is actually one more module that needs to be created: the Playoff
module. Since you will be creating Schedule
, you will actually be creating a Playoff
module at the same time. You can ignore the grid on the left and just focus on the games. Your task is to get Schedule
set up so that it shows both the preseason and regular season. When you are done, your PlayoffGridModuleView
module also needs to be updated. We have created sufficient modules together that you can do all of this on your own. If you get stuck, feel free to look at the completed files to see what I did. Remember to add the feed call we set up for ScheduleView
in the onAppear()
method, just like we did for RosterView
.
We are not going to worry about loading data into the game details dashboard since this requires a feed that can load data based on the game. Game details is beyond the scope of this book as it would require a lot of work to get it working.
If you get stuck with ScheduleView
or...