- July 30, 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)
PermissionsSwiftUI displays and handles permissions in SwiftUI. It is largely inspired by SPPermissions. The UI is highly customizable and resembles an Apple style. ...
Introduction PagerTabStripView is the first pager view built in pure SwiftUI. It provides a component to create interactive pager views ...
1. Taking Action When a Property Changes: Property Observers Swift lets you observe and respond to changes in a property’s ...