
Learning Node.js for Mobile Application Development
By :

In this project, we would like to add a new tab that highlights the developers of this application. This will inform the potential users of this app about how to get in touch with the developers to provide them with the necessary feedback to improve the app experience.
In order to achieve this, we'll need to perform the following four main steps:
Create a new controller entry in controllers.js
.
Create a new tab controller called tab-about
in HTML.
Add a new tab entry in the tabs.html
file.
Consolidate our work in the app.js
file and connect everything together.
Let's start with adding a controller for the new tab. Head over to controllers.js
and add the following into it:
controller('AboutCtrl', function($scope) {})
Don't worry about the empty function for now. At the moment, our tab does not need any functionality apart from simply appearing.
Now that we have a controller, we need to implement the view for the new tab. The first order of business...
Change the font size
Change margin width
Change background colour