SideMenu – SwiftUI
  • July 25, 2025

Install


Swift Package Manager

Open Xcode, go to File -> Swift Packages -> Add Package Dependency and enter https://github.com/akardas16/SideMenu.git as Branch main

You need to add import SideMenu

Usage


 

Without 3D effect With 3D effect

  • initilize SideMenuView with available parameters

SideMenuView(
isMenuOpen: $isMenuOpen,
tabs: tabs, // add your [MenuTabModel]
selectedTab: $selectedTab, //initial selectedTab
backColor: $backColor, //acces view placeholder background
backImage: “airplane”, //add your background image! Default value is airplane
selectionColor: .purple,
blurRadius: 32, // add blur radius for image default value is 32
enable3D: true //enable/disable 3D effect
) {
if selectedTab.title == “Home” {
TabOne(isMenuOpen: $isMenuOpen, backColor: $backColor)
}else if selectedTab.title == “Profile” {
TabTwo(isMenuOpen: $isMenuOpen, backColor: $backColor)
}else if selectedTab.title == “Settings” {
TabThree(isMenuOpen: $isMenuOpen, backColor: $backColor)
}
}

  • Example tabs array

let tabs = [MenuTabModel(title: “Home”, imageName: “house”),MenuTabModel(title: “Profile”, imageName: “person”),MenuTabModel( title: “Settings”, imageName: “gear”)]

@State var isMenuOpen:Bool = true
@State var selectedTab:MenuTabModel = MenuTabModel(title: “Home”, imageName: “house”)
@State var backColor = Color.pink

Want to try library quickly?

  • Paste HomeView.swift file to your project and see UI on preview

GitHub


View Github

YOU MIGHT ALSO LIKE...
🧭 NavigationKit

NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...

swiftui-navigation-stack

An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...

Stinsen

Simple, powerful and elegant implementation of the Coordinator pattern in SwiftUI. Stinsen is written using 100% SwiftUI which makes it ...

SwiftUI Router

With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...

FlowStacks

This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...