The Complete React Native Mobile Apps Development
EasyShiksha Learning
3:41:20
Description
React Native Mobile Apps Development
What You'll Learn?
- Real-world projects: Build real-world projects to apply and reinforce the concepts learned
- Building UI: Learn how to design and create user interfaces using React Native components.
- APIs & Data: Integrate APIs and handle data within the app.
- Debugging & Deployment: Debug code and deploy the app to app stores.
Who is this for?
More details
DescriptionThis course is an introduction to React Native, Facebookâs JavaScript framework for building mobile applications. Using your existing knowledge of JavaScript and React, youâll be able to build and deploy fully featured mobile applications for both iOS and Android that truly render natively. Just because itâs JavaScript doesnât mean we should settle for less. There are plenty of advantages to working with React Native over traditional means of mobile development, and we donât need to sacrifice the native look and feel.
Weâll start with the basics, and work our way up to deploying a full-fledged application to both the iOS App Store and the Google Play Store, with 100% code reuse between the two platforms. In addition to the essentials of the framework, weâll discuss how to work beyond it, including how to make use of third-party libraries and even how to write your own Java or Objective-C libraries to extend React Native.If youâre coming to mobile development from the perspective of a frontend software engineer or web developer, this is the course for you. React Native is a pretty amazing thing, and I hope youâre as excited to explore it.
Prerequisites
This course is not an introduction to React, in general. Weâll assume that you have some working knowledge of React. If youâre brand new to React, we suggest reading through a tutorial or two before coming back to take the plunge into mobile development. Specifically, you should be familiar with the role of props and state, the component lifecycle, and how to create React components.
Chapter1. What Is React Native?
React Native is a JavaScript framework for writing real, natively rendering mobile applications for iOS and Android. Itâs based on React, Facebookâs JavaScript library for building user interfaces, but instead of targeting the browser, it targets mobile platforms.
Chapter 2. Working with React Native
In this chapter, weâll cover the âbridge,â and review how React Native works under the hood. Then, weâll look at how React Native components differ from their web counterparts, and cover what youâll need to know in order to create and style components for mobile.
Chapter 3. Building Your First Application
In this chapter, we will cover how to set up your local development environment for working with React Native. Then, we will go through the basics of creating a simple application, which you will then be able to deploy to your own iOS or Android device.
Chapter 4. Components for Mobile
In this chapter, we will take a closer look at the mobile-based components used for React Native, and how they compare to basic HTML elements. Mobile interfaces are based on different primitive UI elements than web pages, and thus we need to use different components.
Chapter 5. Styles
Itâs great to be able to build functional applications, but if you canât style them effectively, you wonât get very far! In Chapter 3, we built a simple weather application with some basic styles. While this gave us an overview of how to style React Native components, we glossed over many of the details. In this chapter, we will take a closer look at how styles work in React Native. Weâll cover how to create and manage your stylesheets, as well as the details of React Nativeâs implementation of CSS rules. By the end of this chapter, you should feel comfortable creating and styling your own React Native components and applications.
Chapter 6. Platform APIs
This chapter covers some of the available platform APIs. For our example, weâll make some modifications to the Weather application from earlier. Weâll add geolocation to the app, so that it detects the userâs location automatically. We will also add âmemoryâ to the app, so it will remember your previously searched locations. Finally, weâll use the camera roll to change the background image to one of the userâs photos.
Chapter 7. Modules
In Chapter 6, we looked at some of the APIs that React Native exposes for interacting with the host platform. Things like the camera roll and geolocation are platform-specific, but React Native exposes interfaces for them for our convenience. Because support for those APIs is built into React Native, theyâre quite easy to use. What happens when we want to use an API that isnât supported by React Native? In this chapter, weâll look at how to install modules written by members of the React Native community using npm. Weâll also take a closer look at one such module for iOS, reactnative video, and learn how the RCTBridgeModule can allow you to add JavaScript interfaces to existing Objective-C APIs. Weâll also look at importing pure JavaScript libraries into your project, and how to manage dependencies.
Chapter 8. Debugging and Developer Tools
As you develop your own applications, chances are that something will go wrong along the way. When itâs time to debug your applications, we happily have some React Native specific tools that will make the job easier. There are also some nasty bugs that can crop up at the intersection of React Native and its host platform, which weâll take a look at, too. In this chapter, weâll dig into common pitfalls of React Native development, and the tools you can use to tackle them. And because any discussion of debugging would be incomplete without reference to testing, weâll also cover the basics of getting automated testing set up for your React Native code.
Chapter 9. Putting It All Together
Now that weâve covered many of the pieces youâll need to build your own React Native applications, letâs put everything together. Up until now, weâve mostly dealt with small examples. In this chapter, weâll look at the structure of a larger application. Weâll cover the use of Reflux, a library for unidirectional dataflow based on the Flux model. Weâll also see how we can use the Dimensions API to scale text to accommodate different screen sizes. Finally, weâll end with some homework: tasks that you can undertake to see what itâs like to build out more features in an existing React Native codebase.
Chapter 10. Deploying to the iOS App Store
Now that you have a totally awesome application, youâll want to get it into the hands of your users. This process will vary by platform. In this chapter, we will focus on the detailed steps for uploading an application to the iOS App Store.
Who this course is for:
- Web developers: Web developers who want to expand their skills to mobile app development using React Native.
- Mobile app developers: Mobile app developers looking to learn a new cross-platform development framework.
- Any individual looking to improve their skills in mobile app development: Whether you're a beginner or have experience in mobile app development, this course can help you enhance your skills and knowledge in React Native.
This course is an introduction to React Native, Facebookâs JavaScript framework for building mobile applications. Using your existing knowledge of JavaScript and React, youâll be able to build and deploy fully featured mobile applications for both iOS and Android that truly render natively. Just because itâs JavaScript doesnât mean we should settle for less. There are plenty of advantages to working with React Native over traditional means of mobile development, and we donât need to sacrifice the native look and feel.
Weâll start with the basics, and work our way up to deploying a full-fledged application to both the iOS App Store and the Google Play Store, with 100% code reuse between the two platforms. In addition to the essentials of the framework, weâll discuss how to work beyond it, including how to make use of third-party libraries and even how to write your own Java or Objective-C libraries to extend React Native.If youâre coming to mobile development from the perspective of a frontend software engineer or web developer, this is the course for you. React Native is a pretty amazing thing, and I hope youâre as excited to explore it.
Prerequisites
This course is not an introduction to React, in general. Weâll assume that you have some working knowledge of React. If youâre brand new to React, we suggest reading through a tutorial or two before coming back to take the plunge into mobile development. Specifically, you should be familiar with the role of props and state, the component lifecycle, and how to create React components.
Chapter1. What Is React Native?
React Native is a JavaScript framework for writing real, natively rendering mobile applications for iOS and Android. Itâs based on React, Facebookâs JavaScript library for building user interfaces, but instead of targeting the browser, it targets mobile platforms.
Chapter 2. Working with React Native
In this chapter, weâll cover the âbridge,â and review how React Native works under the hood. Then, weâll look at how React Native components differ from their web counterparts, and cover what youâll need to know in order to create and style components for mobile.
Chapter 3. Building Your First Application
In this chapter, we will cover how to set up your local development environment for working with React Native. Then, we will go through the basics of creating a simple application, which you will then be able to deploy to your own iOS or Android device.
Chapter 4. Components for Mobile
In this chapter, we will take a closer look at the mobile-based components used for React Native, and how they compare to basic HTML elements. Mobile interfaces are based on different primitive UI elements than web pages, and thus we need to use different components.
Chapter 5. Styles
Itâs great to be able to build functional applications, but if you canât style them effectively, you wonât get very far! In Chapter 3, we built a simple weather application with some basic styles. While this gave us an overview of how to style React Native components, we glossed over many of the details. In this chapter, we will take a closer look at how styles work in React Native. Weâll cover how to create and manage your stylesheets, as well as the details of React Nativeâs implementation of CSS rules. By the end of this chapter, you should feel comfortable creating and styling your own React Native components and applications.
Chapter 6. Platform APIs
This chapter covers some of the available platform APIs. For our example, weâll make some modifications to the Weather application from earlier. Weâll add geolocation to the app, so that it detects the userâs location automatically. We will also add âmemoryâ to the app, so it will remember your previously searched locations. Finally, weâll use the camera roll to change the background image to one of the userâs photos.
Chapter 7. Modules
In Chapter 6, we looked at some of the APIs that React Native exposes for interacting with the host platform. Things like the camera roll and geolocation are platform-specific, but React Native exposes interfaces for them for our convenience. Because support for those APIs is built into React Native, theyâre quite easy to use. What happens when we want to use an API that isnât supported by React Native? In this chapter, weâll look at how to install modules written by members of the React Native community using npm. Weâll also take a closer look at one such module for iOS, reactnative video, and learn how the RCTBridgeModule can allow you to add JavaScript interfaces to existing Objective-C APIs. Weâll also look at importing pure JavaScript libraries into your project, and how to manage dependencies.
Chapter 8. Debugging and Developer Tools
As you develop your own applications, chances are that something will go wrong along the way. When itâs time to debug your applications, we happily have some React Native specific tools that will make the job easier. There are also some nasty bugs that can crop up at the intersection of React Native and its host platform, which weâll take a look at, too. In this chapter, weâll dig into common pitfalls of React Native development, and the tools you can use to tackle them. And because any discussion of debugging would be incomplete without reference to testing, weâll also cover the basics of getting automated testing set up for your React Native code.
Chapter 9. Putting It All Together
Now that weâve covered many of the pieces youâll need to build your own React Native applications, letâs put everything together. Up until now, weâve mostly dealt with small examples. In this chapter, weâll look at the structure of a larger application. Weâll cover the use of Reflux, a library for unidirectional dataflow based on the Flux model. Weâll also see how we can use the Dimensions API to scale text to accommodate different screen sizes. Finally, weâll end with some homework: tasks that you can undertake to see what itâs like to build out more features in an existing React Native codebase.
Chapter 10. Deploying to the iOS App Store
Now that you have a totally awesome application, youâll want to get it into the hands of your users. This process will vary by platform. In this chapter, we will focus on the detailed steps for uploading an application to the iOS App Store.
Who this course is for:
- Web developers: Web developers who want to expand their skills to mobile app development using React Native.
- Mobile app developers: Mobile app developers looking to learn a new cross-platform development framework.
- Any individual looking to improve their skills in mobile app development: Whether you're a beginner or have experience in mobile app development, this course can help you enhance your skills and knowledge in React Native.
User Reviews
Rating
EasyShiksha Learning
Instructor's Courses
Udemy
View courses Udemy- language english
- Training sessions 40
- duration 3:41:20
- Release Date 2023/03/25