FanMenu alternatives and similar libraries
Based on the "Menu" category.
Alternatively, view FanMenu alternatives based on common mentions on social networks and blogs.
-
Pagemenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
CircleMenu
:octocat: โญ๏ธ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
GuillotineMenu
Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine. -
PagingMenuController
Paging view controller with customizable menu in Swift. -
Panels
Panels is a framework to easily add sliding panels to your application -
PagingKit
PagingKit provides customizable menu UI. It has more flexible layout and design than the other libraries. -
YNDropDownMenu
โจ Awesome Dropdown menu for iOS with Swift 5.0 -
SwipeMenuViewController
Swipable tab and menu View and ViewController. -
FlowingMenu
Interactive view transition to display menus with flowing and bouncing effects in Swift -
InteractiveSideMenu
iOS Interactive Side Menu written in Swift. -
SwiftUI Drawer
A SwiftUI bottom-up controller, like in the Maps app. Drag to expand or minimize. -
PagerTabStripView
๐ Elegant Pager View fully written in pure SwiftUI. -
DropDownMenuKit
UIKit drop down menu, simple yet flexible and written in Swift -
HHFloatingView
An easy to use and setup floating view for your app. ๐ก -
SwiftUISelector
A Modern Horizontal Option Selector View for SwiftUI
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FanMenu or a related project?
README
FanMenu
Easily customizable floating circle menu created with Macaw
We are a development agency building phenomenal apps.
Usage
- Create
UIView
in your storyboard or programatically. - Set
FanMenu
asUIView
class. - Set the button
swift fanMenu.button = FanMenuButton( id: "main", image: "plus", color: Color(val: 0x7C93FE) )
- Set menu items
swift fanMenu.items = [ FanMenuButton( id: "exchange_id", image: "exchange", color: Color(val: 0x9F85FF) ), ... FanMenuButton( id: "visa_id", image: "visa", color: Color(val: 0xF55B58) ) ]
- Add an event handler
swift // call before animation fanMenu.onItemDidClick = { button in print("ItemDidClick: \(button.id)") } // call after animation fanMenu.onItemWillClick = { button in print("ItemWillClick: \(button.id)") }
- Configure optional parameters ```swift // distance between button and items fanMenu.menuRadius = 90.0
// animation duration fanMenu.duration = 0.35
// menu opening delay fanMenu.delay = 0.05
// interval for buttons in radians fanMenu.interval = (0, 2.0 * M_PI)
// menu background color fanMenu.menuBackground = Color.red
7. Useful methods
```swift
fanMenu.isOpen
fanMenu.open()
fanMenu.close()
Customization
FanMenu is created with Macaw, our vector graphics Swift library. Thanks to that, it can be easily modified and improved for your purposes.
All source code is located in one single file called FanMenu.swift. To modify the menu simply copy this file and apply necessary changes.
Examples
To try out the FanMenu examples:
- Clone the repo
git clone [email protected]:exyte/fan-menu.git
- Open terminal and run
cd <FanMenuRepo>/Example
- Run
pod install
to install all dependencies - Run
xed .
to open project in the Xcode - Try it!
We have the following examples:
- FinanceViewController.swift Accounting & Financial Management. Inspired by Yingfang Xie.
- TaskViewController.swift Color Coding Microinteraction. Insipred by Filippos Protogeridis.
- ShopViewController.swift Inspired by Tice.
- CustomViewController.swift Inspired by awesome Ramotion control circle-menu
Installation
CocoaPods
pod 'FanMenu'
Carthage
github 'Exyte/fan-menu'
Manually
Drop FanMenu.swift into your project.
Requirements
- iOS 9.0+ / macOS 10.12+
- Xcode 10.2+
*Note that all licence references and agreements mentioned in the FanMenu README section above
are relevant to that project's source code only.