Book Image

Lightning-Fast Mobile App Development with Galio

By : Alin Gheorghe
Book Image

Lightning-Fast Mobile App Development with Galio

By: Alin Gheorghe

Overview of this book

Galio is a free open source React Native framework that enables beginner-level programmers to quickly build cross-platform mobile apps by leveraging its beautifully designed ready-made components. This book helps you to learn about React Native app development while building impressive out-of-the-box apps with Galio. Lightning Fast Mobile App Development with Galio takes a hands-on approach to implementation and associated methodologies that will have you up and running and productive in no time. Complete with step-by-step explanations of essential concepts, practical examples, and self-assessment questions, you will begin by exploring the basics of React Native and understanding how Galio works. As you make progress, you'll learn how to initialize and configure a React Native app and get to grips with the basics of React Native development. You'll also discover how packages work and how to install Galio as the main dependency, along with understanding how and why Galio helps you to develop apps with ease. Finally, you'll build three practical and exciting apps using React Native and Galio. By the end of this app development book, you'll have learned how to use Galio to quickly create layouts and set up React Native projects for your personal ideas.
Table of Contents (14 chapters)

Props and how to use them

So, what exactly are props? Up to now, we've only used normal tags to identify our components such as TransactionCardHeader. However, as we saw earlier when we presented different components, these ones could also have props that are used to pass down information from the bigger component (parent) to a smaller component (children).

Let's go into TransactionCardList and look at our code. As far as we can see, there's a lot of code repeating itself in terms of components being used. So, we can see this pattern emerging from inside our main <View /> tag:

Figure 3.8 – TransactionCardList component ready to be divided into smaller components

The pattern is pretty easy to see—we have four identically written pieces of code but with different information written inside of it. We basically have four instances of View components with two Text components inside of them. Seeing how this repeats, we can...