Slide up menu animation
Slide up menu animation

Create a Slide-Up Menu in Swift

Showing views with some animation is very common in iOS applications and people love these animations. Animations enhance the user experience and that hold the user in the application. In…

add-search-to-tableview-in-swift.jpeg
add-search-to-tableview-in-swift.jpeg

Adding Search to TableView in Swift

Searching is a very common feature in any application, Adding search to tableView in swift, allows us to search in the list of elements that are presenting on table view…

Collection view inside tableview
Collection view inside tableview

Add CollectionView inside TableView

Having a collection view inside table view has become a very common design pattern. Many of the applications are already using this kind of pattern in their apps like Spotify,…

Custom Alert view in SwiftUI – (Xcode 12.1)

Presenting system alerts in SwiftUI is super easy. Just call the instance of Alert class and pass the respecting parameters, but system alerts are very basic and non-customizable default design.…

Create a DropDown Menu in Swift

DropDown menu is not a provided functionality in iOS application development, we are dependent on UIPicker or AlertSheet which doesn't look like Dropdown Menu or we need to use the…

Swift 5.1 – How to make Drawing App

In this tutorial, we'll look at how we can build a very simple drawing app. We will learn how we can change the color, stroke size, opacity, and even save…

SwiftUI: Create Tabbed View in SwiftUI

In this iOS tutorial, we will talk about how we can implement Tabbed View or Tab View in SwiftUI. Tab View use to display a view when tab items are selected. Each tab…

SwiftUI: How to use ZStack in SwiftUI

Using stacks in SwiftUI allows us to arrange views in a single view with some properties like HStack allow us to arrange views in the horizontal line. VStack allows us to arrange views in a vertical…