├── .gitignore ├── .swift-version ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── Example ├── Example.xcodeproj │ └── project.pbxproj ├── Example.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── custom_close.imageset │ │ │ ├── Contents.json │ │ │ └── custom_close.png │ │ ├── custom_copylink.imageset │ │ │ ├── Contents.json │ │ │ └── custom_copylink.png │ │ ├── custom_facebook.imageset │ │ │ ├── Contents.json │ │ │ └── custom_facebook.png │ │ ├── custom_share.imageset │ │ │ ├── Contents.json │ │ │ └── custom_share.png │ │ ├── custom_telegram.imageset │ │ │ ├── Contents.json │ │ │ └── custom_telegram.png │ │ ├── custom_twitter.imageset │ │ │ ├── Contents.json │ │ │ └── custom_twitter.png │ │ ├── custom_whatsup.imageset │ │ │ ├── Contents.json │ │ │ └── custom_whatsup.png │ │ ├── menu_exchange.imageset │ │ │ ├── Contents.json │ │ │ └── exchange.png │ │ ├── menu_money_box.imageset │ │ │ ├── Contents.json │ │ │ └── money_box.png │ │ ├── menu_plus.imageset │ │ │ ├── Contents.json │ │ │ └── plus.png │ │ ├── menu_visa.imageset │ │ │ ├── Contents.json │ │ │ └── visa.png │ │ ├── menu_wallet.imageset │ │ │ ├── Contents.json │ │ │ └── wallet.png │ │ ├── shop_DS.imageset │ │ │ ├── Contents.json │ │ │ └── shop_DS.jpg │ │ ├── shop_LG.imageset │ │ │ ├── Contents.json │ │ │ └── shop_LG.jpg │ │ ├── shop_NA.imageset │ │ │ ├── Contents.json │ │ │ └── shop_NA.png │ │ ├── shop_YS.imageset │ │ │ ├── Contents.json │ │ │ └── shop_YS.jpg │ │ ├── shop_camera.imageset │ │ │ ├── Contents.json │ │ │ └── shop_camera.png │ │ ├── shop_chair.imageset │ │ │ ├── Contents.json │ │ │ └── shop_chair.png │ │ ├── shop_chat.imageset │ │ │ ├── Contents.json │ │ │ └── shop_chat.png │ │ ├── shop_coffee.imageset │ │ │ ├── Contents.json │ │ │ └── shop_coffee.png │ │ ├── shop_gallery.imageset │ │ │ ├── Contents.json │ │ │ └── shop_gallery.png │ │ ├── shop_home.imageset │ │ │ ├── Contents.json │ │ │ └── shop_home.png │ │ ├── shop_photo.imageset │ │ │ ├── Contents.json │ │ │ └── shop_camera.png │ │ ├── shop_profile.imageset │ │ │ ├── Contents.json │ │ │ └── shop_profile.png │ │ ├── shop_ps.imageset │ │ │ ├── Contents.json │ │ │ └── shop_Ps.png │ │ ├── shop_star_selected.imageset │ │ │ ├── Contents.json │ │ │ └── shop_star_selected.png │ │ ├── shop_star_unselected.imageset │ │ │ ├── Contents.json │ │ │ └── shop_star_unselected.png │ │ ├── transaction_clock.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_clock.png │ │ ├── transaction_coffee.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_coffee.png │ │ ├── transaction_dinner.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_dinner.png │ │ ├── transaction_salary.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_salary.png │ │ ├── transaction_shoping.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_shoping.png │ │ └── transaction_travel.imageset │ │ │ ├── Contents.json │ │ │ └── transaction_travel.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomViewController.swift │ ├── FinanceViewController.swift │ ├── Info.plist │ ├── MainController.swift │ ├── ShopViewController.swift │ └── TaskViewController.swift └── Podfile ├── FanMenu.podspec ├── FanMenu.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── FanMenu.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── FanMenu.h ├── FanMenu.swift └── Info.plist ├── demo.gif └── header.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "Exyte/Macaw" ~> 0.9.7 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_close.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_close.imageset/custom_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_close.imageset/custom_close.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_copylink.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_copylink.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_copylink.imageset/custom_copylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_copylink.imageset/custom_copylink.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_facebook.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_facebook.imageset/custom_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_facebook.imageset/custom_facebook.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_share.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_share.imageset/custom_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_share.imageset/custom_share.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_telegram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_telegram.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_telegram.imageset/custom_telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_telegram.imageset/custom_telegram.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_twitter.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_twitter.imageset/custom_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_twitter.imageset/custom_twitter.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_whatsup.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_whatsup.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/custom_whatsup.imageset/custom_whatsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/custom_whatsup.imageset/custom_whatsup.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_exchange.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_exchange.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_exchange.imageset/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_exchange.imageset/exchange.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_money_box.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_money_box.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_money_box.imageset/money_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_money_box.imageset/money_box.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_plus.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_plus.imageset/plus.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_visa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_visa.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_visa.imageset/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_visa.imageset/visa.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_wallet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_wallet.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/menu_wallet.imageset/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/menu_wallet.imageset/wallet.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_DS.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_DS.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_DS.imageset/shop_DS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_DS.imageset/shop_DS.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_LG.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_LG.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_LG.imageset/shop_LG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_LG.imageset/shop_LG.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_NA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_NA.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_NA.imageset/shop_NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_NA.imageset/shop_NA.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_YS.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_YS.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_YS.imageset/shop_YS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_YS.imageset/shop_YS.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_camera.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_camera.imageset/shop_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_camera.imageset/shop_camera.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_chair.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_chair.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_chair.imageset/shop_chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_chair.imageset/shop_chair.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_chat.imageset/shop_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_chat.imageset/shop_chat.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_coffee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_coffee.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_coffee.imageset/shop_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_coffee.imageset/shop_coffee.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_gallery.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_gallery.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_gallery.imageset/shop_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_gallery.imageset/shop_gallery.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_home.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_home.imageset/shop_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_home.imageset/shop_home.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_photo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_photo.imageset/shop_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_photo.imageset/shop_camera.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_profile.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_profile.imageset/shop_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_profile.imageset/shop_profile.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_ps.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_ps.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_ps.imageset/shop_Ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_ps.imageset/shop_Ps.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_star_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_star_selected.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_star_selected.imageset/shop_star_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_star_selected.imageset/shop_star_selected.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_star_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_star_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/shop_star_unselected.imageset/shop_star_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/shop_star_unselected.imageset/shop_star_unselected.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_clock.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_clock.imageset/transaction_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_clock.imageset/transaction_clock.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_coffee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_coffee.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_coffee.imageset/transaction_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_coffee.imageset/transaction_coffee.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_dinner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_dinner.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_dinner.imageset/transaction_dinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_dinner.imageset/transaction_dinner.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_salary.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_salary.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_salary.imageset/transaction_salary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_salary.imageset/transaction_salary.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_shoping.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_shoping.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_shoping.imageset/transaction_shoping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_shoping.imageset/transaction_shoping.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_travel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_travel.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/transaction_travel.imageset/transaction_travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Assets.xcassets/transaction_travel.imageset/transaction_travel.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/CustomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/CustomViewController.swift -------------------------------------------------------------------------------- /Example/Example/FinanceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/FinanceViewController.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/MainController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/MainController.swift -------------------------------------------------------------------------------- /Example/Example/ShopViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/ShopViewController.swift -------------------------------------------------------------------------------- /Example/Example/TaskViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Example/TaskViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Example/Podfile -------------------------------------------------------------------------------- /FanMenu.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/FanMenu.podspec -------------------------------------------------------------------------------- /FanMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/FanMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FanMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/FanMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FanMenu.xcodeproj/xcshareddata/xcschemes/FanMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/FanMenu.xcodeproj/xcshareddata/xcschemes/FanMenu.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FanMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Sources/FanMenu.h -------------------------------------------------------------------------------- /Sources/FanMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Sources/FanMenu.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/demo.gif -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/fan-menu/HEAD/header.png --------------------------------------------------------------------------------