- August 28, 2025
- Mins Read
A lightweight flyover side menu component for iOS with the UIDynamic
‘s bouncing animation, UIGestures
and UIBlurEffect
. Allows you to use native UINavigationController
‘s logic to manage view controllers. The component is written in Swift.
The recommended way for installating ENSwiftSideMenu
is via the CocoaPods package manager
platform :ios, ‘9.0’
pod ‘ENSwiftSideMenu’, ‘~> 0.1.4’
All you need is import ENSideMenu.swift
and ENSideMenuNavigationController.swift
to your project folder.
override func viewDidLoad() {
super.viewDidLoad()
sideMenu = ENSideMenu(sourceView: self.view, menuViewController: MyMenuViewController(), menuPosition:.Left)
// show the navigation bar over the side menu view
view.bringSubviewToFront(navigationBar)
}
sideMenuController()?.setContentViewController(destViewController)
This 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 ...