as

Settings
Sign out
Notifications
Alexa
亚马逊应用商店
AWS
文档
Support
Contact Us
My Cases
新手入门
设计和开发
应用发布
参考
支持
感谢您的访问。此页面目前仅提供英语版本。我们正在开发中文版本。谢谢您的理解。

Part 1: Introduction

In this part of the lab, you will be building a single screen, basic app that will serve as a landing screen. This will display a list of videos.

Identify Components

When building apps with React Native for Vega (and React Native), we recommend breaking down our UX into individual components (for more detail, see 'Thinking in React'). Components are a key concept of Reactive design (which is where "React" gets its name). In this project, we can break our landing screen into a Header component and a VideoCard component:

Even if we don't reuse these components, it is a good idea to create them to simplify the code and make it more readable.