The future of Mobile Applications is here! ๐ฒ Are you ready for it? ๐
This course teaches the basics of React Native development. We want to help you create the best of breed user experiences and mobile applications.
โ index
The training will start at a low level, and does not require in depth knowledge of the platform in question. Desirable participant profile: trainees and outside Globant candidates. A basic knowledge on HTML, CSS, and JavaScript, React is desired, though. For React you can check React + Redux Bootcamp
โ index
Five weeks total.
Three weeks for guided learning and two weeks for app development.
โ index
You can contact other bootcamp participants or any available tutor if you need technical assistance. We will create one chat for boot camp members only, and another one for boot camp members and tutors when boot camp starts.
-
Code review after each practice and sprint
-
Checkpoint completion after Learning stage with your assigned tutor
โ index
Developers that move faster than average can go ahead and complete as much exercises as wanted.
โ index
-
If you are on Windows you will need Android SDK and android emulator or device. On Linux you will need Android SDK and android emulator or device. On Mac you can add Xcode and iOS Simulator or Android SDK and android emulator or device.
Note: For Android we recommend installing Andoid Studio, that comes with SDK
-
Install Node and NPM NodeJS LTS
-
The IDE to use is Visual Studio Code. But you can use the edit of your choice Atom, Sublime, WebStorm, etc
-
Skype Account + headset (audio calls), Slack
-
Create your own GitHub account. Follow this guideline to setup your account.
โ index
The boot camp is organized in the following way:
-
The first three weeks will be used for intensive self learning. Each topic will have reading and practices parts. Tutors will be available to answer technical questions on a given chat room.
-
The next two weeks will be used to develop an application following a life process.
-
The project manager will coordinate learning days encouraging team communication in daily meetings.
-
The project manager will gather information regarding individual progress so we can look for alternative assistance where needed.
-
The project manager will lead the boot camp sprints as if it were a real project using SCRUM agile methodology.
-
Two boot camp chats will be created for feedback and technical assistance:
-
Bootcamp React Native - ALL Every person participating in the bootcamp is present here (students, tutors and PMs). Here is the place to ask for technical assistance!
-
Bootcamp React Native - Assistants Here you will reach just your boot camp fellows for asking question sharing knowledge.
-
-
Team play is encouraged but the work will be evaluated per person.
-
Sprint duration will be 1 week.
-
The instructions will be vague as they generally are in real life projects. You must look for support and guidance from your PM, teammates and tutors.
-
All code and documentation must be in English.
-
Code must adhere to Globantโs UI HTML, CSS and JavaScript coding guidelines.
โ index
The test application will consist in a Last.fm client.
โ index
Documentation (https://facebook.github.io/react-native/docs/getting-started.html)
-
Install NodeJS
-
Install React Native client
npm install -g react-native-cli
-
Install watchman
โ index
Each day you will grab the fundamentals of the key building blocks for the next generation mobile apps.
On each learning day you will have to:
-
๐ Read: We will provide you with documentation related with current sprint content so you can have a background reference, guide and examples to complete the following practice.
-
โ๏ธ Practice: You will implement the previously gathered knowledge in simple coding activities. Most important task numbers are listed in the "Key Points" section for each day and they should get most of your attention; if you feel you donโt have enough time to complete all tasks, start with these ones when possible.
-
๐ฌ Commit: You will commit all your code on a daily basis, when you finish your practice.
โ index
At high level you could see the keys as:
React Native is like React, but it uses native components instead of web components as building blocks. So to understand the basic structure of a React Native app, you need to understand some of the basic React concepts, like JSX, components, state, and props. If you already know React, you still need to learn some React-Native-specific stuff, like the native components.
โ index
โ index
- Start guide Geting started
โ index
-
What is ReactJS?. Here is an introduction to it.
-
First get started with ReactJS then Think in React.
-
Understand Props & States.
-
Read about some ReactJS's Best Practices, Patterns & Anti-patters.
-
Check some ReactJS's Test utils.
-
Try on using Reactify ReactJS + Browserify workflow.
-
Redux Redux React-Redux
โ index
-
Beginner basic tutorial
-
Beginner basic tutorial
โ index
- Beginner: React Native Style basic tutorial
โ index
- Beginner: Check the compoennts section and learn what they do basic tutorial
โ index
- Beginner: Handling touches
โ index
- Beginner: Networking
-
Understanding ECMAScript 6: https://leanpub.com/understandinges6/read
-
ECMAScriptยฎ 2015 Language Specification For really advanced developers
-
Using Chrome console to debug JavaScript https://developer.chrome.com/devtools/docs/console
Use Try to use as much ECMAScript 6 syntax as you can. Favor let
and const
over var
-
Create a new React Native proyect using the react native client.
-
In the root page create two lines of text - 1 - "Hello" and 2 - "World"
-
Add some styles to center the text and set a blue color
-
Add a button below the text, to your component.
-
Attach a touch event to the created button which calls a function that changes the text to "React Native" and "Bootcamp"
-
Add a list to the page
-
Create a service that fetches from
https://jsonplaceholder.typicode.com/users
-
Add a button and attach a touch event that loads the items in the list
3, 5, 8
Test your code in a mobile device or in Android emulator.
Hint: A good option to test your code in a mobile device is to use Genymotion Android Emulator [http://www.genymotion.com/], which is one of the most fast and easy mobile emulators to install.
Commit your practice code.
โ index
In this Topic we will focus on learning how to use the React Native navigation library. This library is a third party as the built in navigation was deprecated because of performance issues
-
Documentation on the differente navigators can be found herehttps://reactnavigation.org/
-
Specific to StackNavigator https://reactnavigation.org/docs/navigators/stack
-
Add a StackNavigator
-
Create a new page with two compoents
-
Inside each teaxt add
name
andemail
of the user -
Using the previous work, add a touch event on the list items.
-
Add a touch event on the list items
-
When an item is touched we should naigate to the new page passing the user as an argument
-
Show
name
andemail
in the components
1, 6, 7
Commit your practice code.
โ index
-
Create a TabNavigator
-
Create 2 Screens for 2 of the tabs
-
On the third one add a nested StackNavigator with 2 Screens
-
In each screen add a {Number of screen} at the top. Example:
<Text>Screen 1</Text> // Tab 1
<Text>Screen 2</Text> // Tab 2
<Stack> // Tab 3
<Text>Screen 3.1</Text> This is the default
<Text>Screen 3.2</Text>
<Stack>
- On screen 3.1 add a that when touched it navigates to Screeen 3.2
1, 4, 5
Test your code in a mobile device or in Android emulator.
Commit your practice code.
โ index
- Modify your previous project to get this navigation structure
Root - StackNavigator -
- 1 - TabNavigator -
- Screen 1
- Screen 2
- Screeen3 (StackNavigator) -
- Screen 3.1
- Screen 3.2
- 2 - DrawerNavigator -
- Screen 4
- Screen 5
1
Commit your practice code.
โ index
-
Redux: http://redux.js.org/
-
React Redux: http://redux.js.org/docs/basics/UsageWithReact.html
-
Navigation and redux: https://reactnavigation.org/docs/guides/redux
- Modify your previous project to support redux
You will work on a project to achieve a fully working multi platform mobile app developed in React Native.
You will apply all the knowledge obtained during the learning weeks.
Youโll be given with a backlog of user stories you will estimate with your PM.
Once estimated, user stories will be divided into sprints of one week.
You will participate on daily scrum meetings. Will you be able to consult documentation? Of course! You will be able to use any resource you know that helps you complete your user stories, be it going back to documentation sites, tutorials or just googling what you need. Luckily the web is plenty of awesome resources waiting for you to grasp them!
You will commit your code to GitHub on a daily basis.
๐ฎ Tutors will give you feedback at the end of each sprint by reviewing and commenting your committed code in GitHub. If possible tutors will give you even more frequent feedback, sometimes at the end of the day.
โ index
Thanks for reading!