From the course: Building Native Mobile Apps with NativeScript and Angular 2

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Details component

Details component - JavaScript Tutorial

From the course: Building Native Mobile Apps with NativeScript and Angular 2

Start my 1-month free trial

Details component

- [Instructor] Now let's do a little more work on the PT item component, and see a couple more UI widgets in action. At this time, the PT item component is a stand alone page that will show the details of the backlog item. Backlog items are going to have quite a bit of data associated with them, and we don't want to overwhelm the users. So the design calls for splitting up the data for each item into multiple views. We need to be able to edit the item details, such as title and description. We need to show and edit the tasks associated with the item, and we also need to show the chit chat section where users can leave comments about the item. All these views can be implemented using separate components that are children of the PT item component. I'll change the app.component to show the PT backlog again. We'll start with a details child component. Let's create a set of files for the new pt item details component. In the backlog folder, in the pt item folder, we're going to create a…

Contents