The Complete Hands-On SwiftUI Apps Using Firebase
The Complete Hands-On SwiftUI Apps Using Firebase, available at $79.99, has an average rating of 4.7, with 70 lectures, based on 143 reviews, and has 957 subscribers.
You will learn about Firebase with SwiftUI Apps Storing data in Firestore database Storing nested collections in Firestore database Uploading images to Firebase storage from SwiftUI Apps Performing authentication using Firebase custom authentication API This course is ideal for individuals who are Developers who wants to learn backend development using Firebase platform or Developers who want to take their skills to the next level or Developers who want to learn how to integrate Firebase with SwiftUI apps or Developers who wants to become full stack mobile developers It is particularly useful for Developers who wants to learn backend development using Firebase platform or Developers who want to take their skills to the next level or Developers who want to learn how to integrate Firebase with SwiftUI apps or Developers who wants to become full stack mobile developers.
Enroll now: The Complete Hands-On SwiftUI Apps Using Firebase
Summary
Title: The Complete Hands-On SwiftUI Apps Using Firebase
Price: $79.99
Average Rating: 4.7
Number of Lectures: 70
Number of Published Lectures: 70
Number of Curriculum Items: 70
Number of Published Curriculum Objects: 70
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Firebase with SwiftUI Apps
- Storing data in Firestore database
- Storing nested collections in Firestore database
- Uploading images to Firebase storage from SwiftUI Apps
- Performing authentication using Firebase custom authentication API
Who Should Attend
- Developers who wants to learn backend development using Firebase platform
- Developers who want to take their skills to the next level
- Developers who want to learn how to integrate Firebase with SwiftUI apps
- Developers who wants to become full stack mobile developers
Target Audiences
- Developers who wants to learn backend development using Firebase platform
- Developers who want to take their skills to the next level
- Developers who want to learn how to integrate Firebase with SwiftUI apps
- Developers who wants to become full stack mobile developers
Firebase is the most popular backend in the mobile community and it is used in thousands of iOS apps. In this course, you will learn how to integrate Firebase in SwiftUI application. You will build several SwiftUI apps which will use Firebase Authentication, Firestore, Storage and Real Time Updates. This is a fun course with real life hand-on coding projects. Let’s check out the contents of the course.
Requirements
-
Knowledge of Swift Language
-
Knowledge of SwiftUI Framework
-
Xcode 12 and iOS 14
-
Google account to access Firebase console
-
No paid software is required. All apps are created using Xcode.
Understanding Firebase:
In this section, you will learn about the Firebase platform. You will also learn about the Firestore database and how it is different from Real Time Database. Finally, you will learn different ways to structure data in the Firestore database.
TODO List
In this section, you will learn about how to implement a simple TODO List app using Firestore and SwiftUI. This section will demonstrate how to perform CRUD operations with Firestore and quickly get your SwiftUI app integrated with Firestore database.
Understanding MVVM Design Pattern
In this section, you will learn how to implement MVVM Design Pattern in a SwiftUI application. MVVM Pattern is the preferred pattern when building SwiftUI apps.
Grocery App
In this section, you will learn how to implement a complete Grocery App using SwiftUI and Firestore. This app will allow users to persist hierarchical information for each document. Later you will update the app to replace the nested data with nested collections.
Fungi Finger
In this section, you will learn how to integrate your SwiftUI app with Firebase authentication, Firestore and even Firebase Storage. The user will pick a photo from the photo library or take a picture. Once the picture has been selected, it will be uploaded to Firebase storage and then the URL will be persisted to the Firestore database under the user identification.
Let’s Chat
In this section, you will learn how to create a Chat App called Let’s Chat. This app will showcase Firestore Real Time Update feature and also use SwiftUI iOS 14 ScrollViewReader API to automatically scroll when new messages arrive.
Don’t take my word for it, check out reviews from my other courses.
It is amazing, not only is it clear but it clarifies all my unanswered questions. It’s hard to find someone who has a well detailed swift DS & Algo class. This is a gem. Thank you Mohammad Azam
This course provides a bundle of resources on Swift UI. Great explanation, building different apps and addition of latest updates makes it a five star course. Thanks Mohammad for your valuable work on providing this course.
Mohammad’s courses are usually outstanding, but he has put in a great amount of detail into this course. He provides great detail in his explanations. If you have never parsed JSON and are looking to learn about MVVM design I would highly recommend this course.
Very elegant course. Well scaffolded. Each section is very focused on a single task. One pet peeve I have of Udemy courses is when an instructor teaches a new skill but nest it inside a project that does 10 other things. This is the second course I’ve had with this instructor and both are excellent. Highly recommended.
After completing this course, you will be ready to build your next SwiftUI application with Firebase platform.
Let’s get started!
Course Curriculum
Chapter 1: Introduction
Lecture 1: Introduction
Lecture 2: Prerequisites
Lecture 3: Exercise Files
Chapter 2: Understanding Firebase
Lecture 1: What is Firebase?
Lecture 2: Firestore vs Real Time Database
Lecture 3: Understanding Structuring Data in Firestore
Lecture 4: Resource: Structuring Data
Chapter 3: TODO List – Setting Firebase and Firestore for SwiftUI Project
Lecture 1: Agenda: TodoList App
Lecture 2: Setting up Firebase project
Lecture 3: Installing Firebase Using CocoaPods
Lecture 4: Fixing Firebase Issues with Xcode 12
Lecture 5: Resources: Fixing Firebase Issues with Xcode 12
Lecture 6: Finishing Firebase Setup
Lecture 7: Installing Firestore CocoaPods and Instantiating Firebase
Lecture 8: Resources: Documentation for Firestore Database
Chapter 4: Todo List – Create, Read, Update and Delete
Lecture 1: Saving a Task
Lecture 2: Fetching All Tasks
Lecture 3: Deleting a Task
Lecture 4: Updating Task
Chapter 5: Understanding MVVM Design Pattern
Lecture 1: What are Design Patterns?
Lecture 2: What is MVVM?
Lecture 3: Why MVVM?
Lecture 4: MVVM Architecture and Web APIs
Lecture 5: Difference Between View Model and Model
Chapter 6: Grocery App – Managing Stores
Lecture 1: What we will be building?
Lecture 2: Understanding the Starter Project
Lecture 3: Implementing Store Model and Firestore save
Lecture 4: Implementing AddStoreViewModel
Lecture 5: Adding Store Using SwiftUI View
Lecture 6: Implementing FirestoreManager getAllStores
Lecture 7: Implementing StoreListViewModel and StoreViewModel
Lecture 8: Displaying All the Stores
Chapter 7: Grocery App – Adding Items to Store
Lecture 1: Implementing FirestoreManager Update to Add Grocery Items
Lecture 2: Implementing StoreItemListViewModel
Lecture 3: Adding Grocery Items to a Store
Lecture 4: Displaying Grocery Items on the View
Lecture 5: REFACTORING – Displaying Grocery Items on the View
Chapter 8: Grocery App – Subcollections
Lecture 1: Implementing StoreItem, StoreItemViewModel and StoreViewState
Lecture 2: Updating Existing Store to Add Store Items
Lecture 3: Displaying Store Items on the SwiftUI View
Lecture 4: Deleting a Store Item
Lecture 5: BUG FIX – Clearing Grocery Item TextFields
Chapter 9: Fungi Finder – Authentication
Lecture 1: What we will be building?
Lecture 2: Understanding the Starter Project
Lecture 3: Resources
Lecture 4: Setting Up Firebase and Downloading Frameworks
Lecture 5: Setting Authentication on Firebase Console
Lecture 6: Registering a User
Lecture 7: Authenticating a User
Chapter 10: Fungi Finder – Firebase Storage
Lecture 1: Setting Up Firebase Storage
Lecture 2: Implementing Upload Photo to Firebase Storage
Lecture 3: Uploading Selected Photo to Firebase Storage
Lecture 4: Saving Fungi to Firestore Database
Chapter 11: Fungi Finder – Displaying Fungi
Lecture 1: Implementing Get All Fungi for User
Lecture 2: Displaying Fungi on the View
Lecture 3: Implementing LoadingState, EmptyState
Chapter 12: Let's Chat – Adding Rooms
Lecture 1: What we will be building?
Lecture 2: Understanding the Starter Project
Lecture 3: Setting Up Firebase and Downloading Frameworks
Lecture 4: Implementing Adding a New Room
Lecture 5: Get All Rooms
Lecture 6: Displaying Rooms
Chapter 13: Let's Chat – Adding Messages
Lecture 1: Implementing Message and MessageListViewModel
Lecture 2: Resource: ViewModel Patterns
Lecture 3: Sending and Saving a Message
Lecture 4: Observing Changes for Room Messages
Lecture 5: Displaying Messages on the Screen
Chapter 14: Conclusion
Lecture 1: Next Steps
Lecture 2: Resources
Lecture 3: Bonus Lecture
Instructors
-
Mohammad Azam
Apple Featured iOS Developer and iOS Instructor
Rating Distribution
- 1 stars: 2 votes
- 2 stars: 2 votes
- 3 stars: 9 votes
- 4 stars: 28 votes
- 5 stars: 102 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024