Skip to main content

20 posts tagged with "SwiftUI"

SwiftUI framework tutorials and guides

View All Tags

How to Make a Chat App for iOS in SwiftUI

· 10 min read
Full Stack Developer
Last updated on December 28, 2023

swiftui chat app

SwiftUI is the modern way of building user interfaces across all Apple platforms. In this tutorial, we are going to learn how to create a chat app in SwiftUI. There are a lot of interesting concepts that need to be engaged in building a SwiftUI chat app, so there's a lot to learn. Here's how your final SwiftUI app will look like at the end of this tutorial:

Top 10 SwiftUI Libraries to Speed Up iOS App Development

· 4 min read
Full Stack Developer
Last updated on August 19, 2023

swftui libraries

SwiftUI has revolutionized iOS app development by offering a declarative and intuitive way to build user interfaces. To further enhance your SwiftUI development experience and make your apps stand out, various third-party libraries have emerged. In this blog post, we'll dive into 10 SwiftUI libraries that can supercharge your iOS app development journey. Each library comes with a code example explained line by line to help you understand its implementation.

How to Build a Login Screen in SwiftUI

· 5 min read
Full Stack Developer
Last updated on July 14, 2023

How to build a login screen in swiftui

Hello fellas, welcome back to our SwiftUI series. In the previous few tutorials, you learned a lot about components, operators as well as how to work with UIKit. Now, it’s time to put those skills to work and get your hands dirty with real practice – design a catchy Login Screen in SwiftUI. After this article, you will find SwiftUI much more convenient and clear.

How to Implement a Navigation Drawer in SwiftUI

· 4 min read
Full Stack Developer
Last updated on July 14, 2023

Welcome back to a new tutorial of our SwiftUI series. In this tutorial, we are going to learn how to implement a navigation drawer in SwiftUI, also know as side menu, side bar menu or hamburger menu. If you have ever worked with it in UIKit, you will understand its nature thoroughly. We will simply create a ViewController and assign it as a quick navigator.

How to Implement Forms in SwiftUI - iOS Tutorial

· 6 min read
Full Stack Developer
Last updated on November 15, 2022

implementing forms with swift

In this iOS tutorial we are going to describe how to use forms in SwiftUI. Forms are a powerful tool, introduced with SwiftUI, enabling mobile developers to build various user forms quickly and efficiently, as opposed to the cumbersome legacy UIKit approach.

Push Notifications with Firebase in Swift 5 - Tutorial

· 10 min read
Full Stack Developer
Last updated on November 17, 2022

Every iOS app should leverage push notifications to boost user engagement and retention. Push notifications are a powerful tool, but implementing them in Swift 5 has been historically tricky since you usually needed a server. If you’re just getting started with your app development, chances are you’re already using Firebase as your backend. That’s great news – implementing push notifications with Firebase in Swift 5 is what we cover in this tutorial. In fact, we’ve followed exactly these steps to add push notifications to our Group Chat app.

Push Notification with Firebase in Swift 5

How to Implement a Map View in SwiftUI

· 5 min read
Full Stack Developer
Last updated on October 8, 2022

mapview swiftui

Hello everyone, welcome back to our SwiftUI tutorial series. This time, we are going to learn one of the important features of iOS in particular and mobile in general: MapView. With SwiftUI, using a MapView in your app is not as trivial as it used to be. But it is totally possible to use a Map View in SwiftUI, which is what we tackle in this SwiftUI tutorial.

How to Implement 'Sign in with Apple' Button in Swift - iOS Tutorial

· 6 min read
Full Stack Developer
Last updated on October 7, 2022

In WWDC19, Apple unveiled “Sign In with Apple”, a new way for users to create accounts and sign in into iOS apps. The benefits for using this is that you are getting a two-factor authenticated, secure login system for free. Additionally, it reduces friction in the on boarding flow, which is great in terms of conversion and growth. In this iOS tutorial, we are going to learn how to implement the Sign in with Apple button in Swift.

![How to Implement “Sign in with Apple” Button in Swift](https://docs.iosapptemplates.com/img/blog/sign-in-with-apple-swift /sign-in-with-apple-in-Swift.png)

MVVM with Combine in SwiftUI – Tutorial

· 7 min read
Full Stack Developer
Last updated on October 28, 2021

mmvm intro

In this article we are going to learn how to implement the powerful MVVM design pattern in SwiftUI applications that are leveraging the Combine framework. The combination of these 3 concepts will be the standard of iOS app architecture for the years to come, so it’s really important to set up a solid groundwork when it comes to designing Swift apps going forward.