as

Settings
Sign out
Notifications
Alexa
Amazonアプリストア
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.