Companies Home Search Profile

Introduction to Server Driven UI in iOS, Swift & SwiftUI

Focused View

Mohammad Azam

3:56:51

86 View
  • 1 - Introduction.mp4
    04:31
  • 2 - Credits.html
  • 3 - Prerequisites.mp4
    02:12
  • 4 - Exercise Files.mp4
    00:45
  • 5 - What is Server Driven UI.mp4
    04:42
  • 6 - Benefits of Server Driven UI.mp4
    03:34
  • 7 - Understanding the Core Architecture of Server Driven UI.mp4
    01:44
  • 8 - What we will be building.mp4
    03:12
  • 9 - Creating Your First NodeExpress Project.mp4
    07:42
  • 9 - pets-server.zip
  • 10 - Returning JSON Template from the Server.mp4
    06:26
  • 10 - pets-returning-json-template-from-server.zip
  • 11 - Implementing Webservice.mp4
    07:31
  • 11 - pets-implementing-web-service.zip
  • 12 - Implementing ScreenModel and ComponentModel.mp4
    06:49
  • 12 - pets-impl-screen-model-component-model.zip
  • 13 - Creating FeaturedImage Component and FeatureImageView.mp4
    09:00
  • 13 - pets-creating-featuredimage-component.zip
  • 14 - Implementing PetListViewModel.mp4
    11:01
  • 14 - pets-implemeting-petlistviewmodel.zip
  • 15 - Displaying View on the Screen.mp4
    06:20
  • 15 - pets-displaying-view-on-screen.zip
  • 16 - Implementing LocalFile Service to Consume JSON.mp4
    16:04
  • 16 - pets-impl-local-file-service.zip
  • 17 - Understanding the Current Decoding Problem.mp4
    04:22
  • 18 - Implementing JSON Type.mp4
    13:14
  • 18 - pets-implementing-json-type.zip
  • 19 - Integrating JSON Type with the App.mp4
    05:36
  • 19 - pets-int-json-type-with-app.zip
  • 20 - Adding Carousel Component and View.mp4
    11:29
  • 20 - pets-carousel-component.zip
  • 21 - What are Actions.mp4
    02:17
  • 22 - Implementing Action ActionType and Route.mp4
    04:44
  • 22 - pets-actions-action-types-route.zip
  • 23 - Implementing Light Weight Navigation Engine.mp4
    06:47
  • 23 - pets-impl-navigation-engine.zip
  • 24 - Performing Navigation Using Navigator.mp4
    05:09
  • 24 - pets-performing-navigation.zip
  • 25 - Passing Payload Using Navigator to Destination.mp4
    05:19
  • 25 - pets-passing-payload-using-navigator.zip
  • 26 - Passing Pet ID as a Parameter to Pet Detail Screen.mp4
    07:38
  • 26 - pets-passing-petid-as-parameter.zip
  • 27 - Updating uniqueId to a UUID.mp4
    03:46
  • 27 - pets-updating-unique-id-to-uuid.zip
  • 28 - Hosting JSON on the Server.mp4
    07:21
  • 28 - pets-hosting-json-on-the-server.zip
  • 29 - Implementing Pet Detail End Point.mp4
    07:33
  • 29 - pets-implemting-pet-details-route.zip
  • 30 - Displaying Pet Details.mp4
    11:32
  • 30 - pets-display-pet-details.zip
  • 31 - Displaying Text Row.mp4
    05:19
  • 31 - pets-display-text-row.zip
  • 32 - Displaying Rating Row.mp4
    07:58
  • 32 - pets-displaying-rating.zip
  • 33 - Updating Server to Support List and Row Types.mp4
    04:10
  • 33 - pets-updating-server-support-list.zip
  • 34 - Implementing List and Row Models.mp4
    07:07
  • 34 - pets-impl-list-row-models-2.zip
  • 35 - Implementing List and Row Components.mp4
    11:28
  • 35 - pets-list-component-row-component.zip
  • 36 - Navigating to Pet Details.mp4
    06:24
  • 36 - pets-navigating-push-to-details.zip
  • 37 - Ignoring Missing Components.mp4
    06:05
  • 37 - pets-ignoring-missing-components.zip
  • 38 - Next Steps Resources.html
  • 39 - Starter Project for ReactJS Server Driven UI Project.html
  • 40 - Bonus Lecture.html
  • Description


    Learn how server driven UI can enable faster iterations and allowing apps to instantly update on multiple platforms

    What You'll Learn?


    • Learn the principles of server driven user interface
    • Identify the benefits of server driven UI approach
    • Implement JSON server using Node and Express
    • Instantly update your app on multiple platforms

    Who is this for?


  • Beginner iOS developers curious about server driven UI in iOS
  • Intermediate and advanced developers looking to increase their knowledge about new architecture
  • What You Need to Know?


  • Familiarity with iOS development and Swift language is recommended
  • Familiarity with SwiftUI framework is recommended
  • Understanding of MVVM design pattern is recommended
  • No server driven UI experience is needed. You will learn everything you need to know
  • Open mind and ability to find solutions through research
  • Familiarity with Node/Express and JavaScript is recommended but not required
  • More details


    Description

    What if there is a way to update the user interface of your app instantly, without having to submit a new version?


    Companies like Airbnb, Spotify, Flipkart, Swiggy and several others use a technique called Server Driven UI, which allows them to remotely update their user interfaces based on the response received from the server. This allows them to bypass the review process and keep their apps sync on multiple platforms.


    In this course, you are going to learn how to get started with building a server driven UI in iOS. You will learn the advantages and disadvantages of the approach and how to architect server driven UI apps. By the end of this course, you will have enough information to start building server driven UI for your applications.


    Let’s check out the contents of the course:


    Understanding Server Driven UI

    In this section you will learn the concepts behind server driven UI and how it is different from basic API responses. You will also learn the benefits of using server driven UI. Finally, you will learn about the architecture of server driven UI apps and how it is different from creating default iOS applications.


    Setting Up Server

    In this section, you will learn how to set up your own custom server, which will return the JSON responses to the iOS app. You will learn how to implement a basic server using Node and Express. You will also learn about implementing a JSON template, which will be responsible for constructing the user interface for your application.


    UIModels, Components and Displaying Views

    In this section, you will learn how to create UI models for your app. The UI models will be responsible for holding the decoded data from the JSON response. You will also learn how to create components for your app, which will be responsible for displaying views on the screen.


    Navigation and Actions

    In this section, you will learn how to implement actions for your app. You will mainly learn about the navigation action, which allows the user to navigate to different screens. You will also learn how to create a dynamic navigation engine, which can be controlled from the server.


    Implementing and Displaying Lists

    In this section, you will learn how to implement list components using server driven UI. You will learn how to accommodate lists through your JSON template and how to render rows based on the provided data from the server.


    Who is this course for?


    • Developers interested in learning about a new way of building dynamic iOS applications.

    • Developers who are interested in releasing their apps on multiple platforms instantly.

    • Developers who want to move to the senior role by learning advanced techniques for app development.


    I had so much fun in creating this course, I consider this to be one of my best courses. Thank you so much for your continuous support. Hope you enjoy the course.


    Thank you so much for your continuous support. I hope you enjoy the course and when you publish your iOS app, implemented using the principles of server driven UI then contact me with a link to your app. I would be more than happy to download your app.


    Thanks,

    Azam

    Who this course is for:

    • Beginner iOS developers curious about server driven UI in iOS
    • Intermediate and advanced developers looking to increase their knowledge about new architecture

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Mohammad Azam
    Mohammad Azam
    Instructor's Courses
    My name is Mohammad Azam and I have been programming in iOS for the last 10+ years. Currently, I am teaching Full Stack Development at DigitalCrafts. Before joining DigitalCrafts I worked as a lead mobile developer for many large companies including Schlumberger, Baker Hughes, AIG and Valic. Currently, I am a senior developer at Blinds Dot Com, a Home Depot company. Before iPhone development I was leading projects in Microsoft ASP technology. I was also awarded the Microsoft MVP award five years in a row due to my contributions in the community.I have also published several of my personal apps to the App Store including Vegetable Tree which was featured by Apple as the most beautiful gardening app on the App Store. I am a frequent speaker at local and national conferences and have authored many articles for many different development magazines.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 36
    • duration 3:56:51
    • English subtitles has
    • Release Date 2024/07/23