- August 28, 2025
- Mins Read
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
Without 3D effect
With 3D effect
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)
}
}
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
HomeView.swift file to your project and see UI on previewThis package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...