Skip to main content

3 posts tagged with "Navigation"

Navigation patterns in apps

View All Tags

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 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.

Drawer menu implementation in Swift 5

· 3 min read
Full Stack Developer
Last updated on June 19, 2019

drawer menu swift iphone slide menu source code

Many of our fully-coded iPhone app templates consist of a drawer menu navigation. This type of navigation usually is triggered by tapping on a menu button on the top left corner of the screen. Once clicked, the menu gets extended from the left side and takes over two-thirds of the screen. Here, the users can choose whatever option they want to navigate to. This type of app navigation is more popular in Android apps, but it gained some ground in the iOS realm as well, especially since concepts like Material design came out. People might also refer to this as hamburger menu navigation.