
Start this React Native course with JavaScript prerequisites, covering variables, functions, arrays, objects, promises, async/await, and ES6 features like arrow functions and destructuring, with optional TypeScript and React JS.
React Native enables cross-platform apps from a single code base, using JavaScript or TypeScript with hot reloading.
Discover expo snack as a collaborative, cross‑platform tool to run and debug react native apps on ios and android, then write your first hello world code.
Set up the React Native development environment by installing node, verifying node and npm versions, and configuring VS Code with essential extensions for React Native, Redux, and Code Spell Checker.
Discover JavaScript data types, including numbers, strings, booleans, objects and arrays, and learn how the typeof operator works with examples.
Learn how to create strings in JavaScript using single or double quotes, template literals with backticks, escape characters, newlines, and the length property.
Explore template strings using backticks to create multi-line strings, embed variables with ${var}, include quotes inside, compare with the old concatenation method, and perform simple calculations.
Learn essential JavaScript string methods in the best React Native course, including zero indexing, charAt, at, slice, substring, replace, and case conversion with toUpperCase and toLowerCase, through practical examples.
Learn to work with JavaScript objects in React Native: create objects with properties, access data by dot and bracket notation, and add, delete, update, and freeze properties.
Explore how JavaScript arrays organize lists, access by zero-based indexes, modify elements, push items, check length, and verify with Array.isArray.
Explore booleans in JavaScript and understand true and false. Learn about equality operators, truthy and falsy values, and testing values with boolean and console.log.
Explore JavaScript comparison and logical operators, distinguishing double equals from triple equals, and practice equals, not equals, greater than, less than, and their type-aware variations.
Master conditional logic using if, else, and else if with hour-based messages and console.log, applying truthy and falsy values to drive outcomes.
Learn how to define and call JavaScript functions using the function keyword, name, parentheses, and a code block; pass parameters and return results for reusable tasks.
Explore the init code of a new React Native project, detailing imports, view and text components, and the style sheet, including flex, alignItems, justifyContent, and save area view.
Learn how to clean up React Native code by using style sheet to define and apply styles with JavaScript objects, replacing inline styles with named styles like titleText and redText.
Render images in React Native by importing local assets or using remote URIs; style with width, height, borderRadius for circles, and blurRadius for blur effects.
Learn to make a React Native screen scrollable by wrapping images in a ScrollView, toggle vertical and horizontal indicators, and apply a red content container style.
Explore platform-specific rendering in React Native by using the Platform module to tailor text, color, and layout for Android and iOS, including ternary expressions and center alignment.
Create loaders in React Native by importing the activity indicator from React Native, use a large size, and customize colors with the color property for Android and iOS.
Learn how the view component acts as a wrapper for other components, enabling layout and styling with height, width, background color, and centered content using flexbox.
Explore flexbox in React Native and how it builds responsive layouts across screen sizes, using flex values to partition space among colored views.
Learn flex-direction in React Native, switching between column and row layouts and their reverses, and use justify content and align items to control alignment and spacing.
Explore absolute and relative positioning in React Native by adjusting top and left values, and learn that relative is the default while absolute can move elements independently.
Learn to implement responsive UI in React Native using the react-native-size-matters library, applying scale and verticalScale to normalize width and height across devices.
Learn to use the useState hook in a React Native app, initialize local state to 20, and update it with setState via increase or decrease functions.
Learn to import and render the modal component from React Native to display content above the screen, control visibility with the useState hook, and apply slide or fade animation types.
Learn to implement and control text input in React Native by using placeholder, keyboard type, secure text entry, and multiline options, and by managing value with onChangeText and useState.
Create a React component using a functional approach, structure UI in separate files under src/components, and export it for use across screens with a React Native style sheet.
Transform Figma designs into fully functional React Native screens by applying core UI principles, adding animations, and building responsive, multi-screen experiences for Android and iOS.
explore when to use png versus svg for react native apps, showing how svg provides scalable graphics and smaller file sizes for logos and icons.
Finish the intro screen by replacing the png with an svg logo, centering content on a white background, and rendering a sun image with absolute bottom-right positioning in React Native.
Create a circular back button with a chevron icon in header beside the user avatar, using Expo vector icons or SVG, and style header as a row with space-between.
Build a social section in a React Native app by creating a circular send button, social circle components, and dynamic icons, with precise styling and borders.
design a social container by styling a view with border radius 14 and a figma-sourced background color, add a social title, and create a reusable component with props for items.
Build a reusable social icon component for the contact us screen by passing titles and icons as props. Learn basics of props, expo vector icons, and simple TypeScript typing.
Move from the contact us screen to building a meditation home screen by creating a new screen component, rendering it in app.tsx, and styling text, padding, margins, and colors.
Build dynamic top tabs in a React Native app by creating a reusable TopTabs component, rendering multiple tabs live and recorded, and managing the active state with useState and onPress.
Make the flatlist reusable by adding props for image URL, title, and date, and use a TypeScript interface for the meditation card to render data from the data file.
Create a reusable payment method card component in react native, render it on the payment screen, import an svg icon, and implement styling for selected and unselected states.
Build a horizontal, scrollable payment list in React Native with SVG icons for cash, Visa, MasterCard, and PayPal using a flatlist, and enable selection via onPress.
Create a bank card box component in React Native, render it in the payment screen, and style it with an icon, Mastercard title, and supporting subtitle.
Create and render a reusable add button in React Native, styling a bordered white button with rounded corners, padding, and an inline plus icon, using TouchableOpacity for interactivity.
Learn how to add animations to a React Native app using the Lottie React Native library, install setup, download a JSON animation, and render it with LottieView in payment screen.
Wrap flatlist in a container for layout control and place colors in a styles folder for a design system. Build four screens and reusable components with props and text inputs.
Build multiple screens in a React Native app by creating gold, tomato, and purple screens, styling with styles.container and text, rendering them in app.tsx, and navigating between screens.
Create a multi-screen app using react navigation stack, define screens with unique names, wrap them in a navigation container, and manage headers and initial routes for smooth navigation.
Learn to build and use mock APIs to power a bookstore app, creating a custom endpoint with fields like name, author, cover, price, and seller email.
Store fetched data in local state with the useState hook and render it using FlatList in a React Native app, displaying item names, prices, and cover images.
Learn to perform http delete requests in a React Native app, deleting data by id through an endpoint, with async try/catch, success alerts, and error handling.
Use post request with Axios in React Native to create data in the database by sending author, cover, price, and seller email to the API endpoint.
Create a book card component in React Native, featuring image, book name, author, price, and delete/edit icons, styled with a row layout, shadows, and iOS/Android compatibility.
Explore props in React and React Native to pass data from parent to child, destructure props, and render reusable book cards with title, price, author, and image URI.
Learn to fetch a list of boxes with useState and useEffect, and render them in a FlatList using keyExtractor and renderItem, mapping backend keys to image, author, and price.
Create a save button component inside the add box screen, styled with the app's primary color and centered bold text, with onPress closing the screen.
Implement a create book flow in React Native by passing body from four inputs (book title, author name, cover URL, price), handling success or error, and refetching list after creation.
Explore Redux basics: learn how the global store holds state, how actions carry type and payload, and how reducers update the state for actions like login or add todo.
Learn how Redux provides global state management across all screens by using actions and reducers, solving inconsistent data, and applying Redux to a simple app and an e-commerce app.
learn to create a Redux store (redux toolkit), connect it to a React app with a provider, and access global state across screens using useSelector for total likes and username.
Learn to manage global state with actions and useDispatch, create action creators, connect actions to reducers, and dispatch updates to increase likes across the app.
Learn how to use multiple reducers in a store by creating a settings reducer, combining reducers with the combine reducers function, and accessing state through the correct reducer keys.
Learn how to define the Redux store state with a TypeScript RootState type using ReturnType of the route reducer, and apply it across settings, data, and home screens.
Migrate from redux to redux toolkit by removing legacy redux code and setting up a new store with configure store, then wrap the app with a provider.
We build a reusable text component in React Native named AppText, supporting bold and medium variations, customizable style, responsive font sizes via react-native-size-matters, and TypeScript typings.
Export const AppColors, a colors object, defining primary, white, light gray, disable gray, blue gray, mid gray, and black for consistent app styling.
Create a reusable safe area view component for React Native to protect the UI from the status bar on Android and iOS, rendering children with customizable styles via props.
Implement flash messages in a React Native app using the react-native-flash-message library, showing messages on press with customizable type, color, and position.
Create an app button component in React Native using TouchableOpacity with onPress, activeOpacity 0.8, styling via a style array, including app colors primary and a disabled gray state.
Create a reusable app text input component in React Native by defining props (value, onChangeText, placeholder, secureTextEntry, keyboardType, style) and styling it to match the login screen.
Create a sign in screen by loading the app logo from assets through a centralized images paths file, then add email and password inputs and login and sign up buttons.
Duplicate the sign in screen to create sign up screen, add a username input, adjust labels to create new account and sign in, and prepare the auth stack for navigation.
Set up stack navigation in expo by installing react navigation native, create an auth stack with sign in and sign up screens, and wrap the app in a navigation container.
Create a home screen with three tabs (home, cart, profile), implement the bottom tabs navigator, and build a main app stack combining an auth stack with the bottom tabs.
Style bottom tabs by hiding the header and applying an active tint color. Add home, card, and profile icons with Expo vector icons, and adjust label margins and Android height.
Create a reusable home header component in React Native, render it on the home, card, and profile screens, and style it with a centered layout and white logo.
Prepare product data by downloading the resources file named product and paste it into src/data, then render this data in the app; next, we will build the product card component.
Create a React Native product card component with image, title, price, and add to cart button. Render on the home screen and pass data via props for dynamic content.
Implement the add to cart button as a circular touchable opacity element, absolute-positioned at the top-left with 28 by 28 scale, z-index one, primary background, and centered cart icon.
Create a global shadow for the app in shared styles, with iOS shadow properties and Android elevation, then apply it to the product card via the spread operator and props.
Create a totals view in the cart screen of a React Native app, displaying order total, taxes, and shipping. Use a separator and price formatting to present a clean total.
Render a cart list with flatlist, map each item by id, image URL, title, and price via spread operator, then navigate to checkout with a continue button and dummy totals.
Create a React Native profile screen with a reusable profile section button and three options: my orders, language with localization, and logout, styled with touchable elements and icons.
Build the my orders screen by creating dummy order data and an order item component, then render the data with a flatlist and navigate to it.
Create a Redux Toolkit cart slice to manage cart state with an empty items array, four actions (add item, remove item, remove product, empty cart), and store integration.
Use reduce to sum cart item prices with an accumulator and initial value, then compute the order total with taxes and shipping and render items or an empty cart.
Learn to move from traditional useState form handling to React Hook Form in a React Native app, achieving better form state management, validation, and performance while reducing code complexity.
Style the input to show a red border and render a dynamic error message from the error object only when a validation error occurs.
Create validation schemas with Yup for full name, phone number, and detailed address, enforcing required fields, min lengths, and a digits-only regex, integrated with React Hook Form via Yup resolver.
Learn to add validation to login and sign-up screens using yup schemas and react-hook-form, enforcing username, email, and password rules with a controller and resolver, before Firebase.
React Native Mastery: Build Real Apps with Expo & CLI
Are you ready to become a React Native developer? This comprehensive course will take you from beginner to advanced, covering everything you need to build real-world mobile applications using React Native and Typescript
What You’ll Learn:
Localization: Make your app multilingual and accessible.
Expo & React Native CLI: Understand both development approaches.
Layout & Styling: Build stunning, responsive UIs.
Networking with Axios: Fetch and manage API data efficiently.
Bottom Tabs & Navigation: Implement seamless app navigation.
Firebase Integration: Authentication, Firestore, and real-time data.
Push Notifications in both Android and iOS.
Redux & Redux Toolkit: Manage global state like a pro.
Integrate AI agents such as ChatGPT into your application.
Learn how to build beautiful animations with React Native.
Hands-On Projects:
You'll build multiple real-world applications, including:
Book Store App – Manage books, categories, and user interactions.
E-commerce App – Full-featured online shopping experience.
AI-Chat App – Chat bot like chatGPT.
Extra:
This course includes an extra JavaScript crash course to ensure you can learn without any obstacles..
No previous programming experience is needed to take this course. Whether you're a complete beginner or looking to enhance your mobile development skills, this course will guide you every step of the way.
By the end of this course, you'll have the skills and confidence to build and deploy fully functional React Native apps.
So if you want to land your first job, Enroll now and start your journey as a React Native developer!