1 00:00:00,270 --> 00:00:07,110 We're in the homestretch in this section, we are going to finalize our app by completing the last two 2 00:00:07,110 --> 00:00:11,310 pages of our app there, the home page and clip page. 3 00:00:11,640 --> 00:00:14,010 Both pages will share some features. 4 00:00:14,250 --> 00:00:16,170 Let's start with the home page. 5 00:00:16,650 --> 00:00:19,230 On this page, we have two sections. 6 00:00:19,470 --> 00:00:22,530 The first section is an introduction to our app. 7 00:00:22,860 --> 00:00:25,290 It's going to remain completely static. 8 00:00:25,560 --> 00:00:29,790 The second section is a list of clips uploaded by our users. 9 00:00:30,120 --> 00:00:33,060 This section needs to be completely dynamic. 10 00:00:33,300 --> 00:00:35,940 It should always display the latest videos. 11 00:00:36,210 --> 00:00:40,230 On top of that, we should allow users to browse older clips. 12 00:00:40,830 --> 00:00:44,580 There are various solutions for browsing through an app's data. 13 00:00:44,880 --> 00:00:48,240 For this project, we're going to add infinite scrolling. 14 00:00:48,540 --> 00:00:51,930 It's a highly popular solution for browsing through data. 15 00:00:52,260 --> 00:00:55,200 Most modern apps implement infinite scrolling. 16 00:00:55,620 --> 00:01:02,760 Lastly, items in our list should link to a specific clip that will lead us to the clip page. 17 00:01:03,000 --> 00:01:05,580 On this page, we have two sections. 18 00:01:05,820 --> 00:01:08,340 The first section is the video player. 19 00:01:08,640 --> 00:01:10,980 This player should be completely functional. 20 00:01:11,400 --> 00:01:18,060 Users will be able to pause, play, expand and jump to specific points in a video. 21 00:01:18,600 --> 00:01:21,600 The second section is another list of clips. 22 00:01:22,020 --> 00:01:26,070 Unlike the home page, we're going to limit the number of clips to three. 23 00:01:26,460 --> 00:01:29,170 We aren't going to enable infinite scrolling. 24 00:01:29,820 --> 00:01:33,240 Overall, these are the last two pages in our app. 25 00:01:33,630 --> 00:01:38,100 We are going to put all our focus on these two pages for this section. 26 00:01:38,400 --> 00:01:39,600 I hope you're excited. 27 00:01:39,810 --> 00:01:40,650 I know I am. 28 00:01:40,740 --> 00:01:42,720 When you're ready, let's get started.