Creating the application interface
Previously, in Chapter 2, Who or What Am I? Understanding the Player, we created the profile screen for our application. However, this is only one of application screens that our lateral menu will link to, as shown here:
Once we click the menu button, we can then toggle our menu to make it appear or disappear. The following is a list of menu items:
Homepage: Here, the user is able to see the unlocked achievements and their progress
Tasks: This is the main page of our application where the user is able to see all her or his tasks, add new ones, and remove old ones
Profile: This is the page we have already implemented, in which the user is able to change their profile
Quit: This is just a button to close the application
However, we still need to implement a lot of features in our application, since we also need to consider the logic behind it. However, most of these will be covered later in this chapter.
Tip
This is an optional step. If you want, you can create...