All Projects → Xopoko → SpaceView

Xopoko / SpaceView

Licence: MIT License
No description or website provided.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to SpaceView

Ehplainalert
Plain style IOS alert
Stars: ✭ 44 (-24.14%)
Mutual labels:  notifications, alert, message
Alertifyjs
A javascript framework for developing pretty browser dialogs and notifications.
Stars: ✭ 1,922 (+3213.79%)
Mutual labels:  notifications, alert
Razor.SweetAlert2
A Razor class library for interacting with SweetAlert2
Stars: ✭ 98 (+68.97%)
Mutual labels:  notifications, alert
Sweetalert2
A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.
Stars: ✭ 13,929 (+23915.52%)
Mutual labels:  notifications, alert
React Notie
Simple notifications for react
Stars: ✭ 27 (-53.45%)
Mutual labels:  notifications, alert
Applozic Ios Sdk
iOS Real Time Chat & Messaging SDK
Stars: ✭ 104 (+79.31%)
Mutual labels:  notifications, message
Bdialog
Extend the Bootstrap Modal features, making dialog more functions and easier to use, dialog type including modal, alert, mask and toast types
Stars: ✭ 174 (+200%)
Mutual labels:  notifications, alert
Overhang.js
🔔 A jQuery plugin for notifications, prompts and confirmations.
Stars: ✭ 437 (+653.45%)
Mutual labels:  notifications, alert
Notica
Send browser notifications from your terminal. No installation. No registration.
Stars: ✭ 215 (+270.69%)
Mutual labels:  notifications, alert
Alert After
Get a desktop notification after a command finishes executing.
Stars: ✭ 230 (+296.55%)
Mutual labels:  notifications, alert
SHPopup
A lightweight library for popup view
Stars: ✭ 36 (-37.93%)
Mutual labels:  alert, message
Notie
🔔 a clean and simple notification, input, and selection suite for javascript, with no dependencies
Stars: ✭ 6,170 (+10537.93%)
Mutual labels:  notifications, alert
mac-ibm-notifications
macOS agent used to display custom notifications and alerts to the end user.
Stars: ✭ 206 (+255.17%)
Mutual labels:  notifications, alert
Zebra dialog
A small, compact, and highly configurable jQuery plugin for creating beautiful modal dialog boxes
Stars: ✭ 147 (+153.45%)
Mutual labels:  notifications, alert
Gsmessages
A simple style messages/notifications, in Swift.
Stars: ✭ 595 (+925.86%)
Mutual labels:  notifications, message
Notiflix
Notiflix is a JavaScript library for client-side non-blocking notifications, popup boxes, loading indicators, and more that makes your web projects much better.
Stars: ✭ 172 (+196.55%)
Mutual labels:  notifications, alert
Ismessages
This is simple extension for presenting system-wide notifications from top/bottom of device screen.
Stars: ✭ 299 (+415.52%)
Mutual labels:  notifications, alert
Whisper
📣 Whisper is a component that will make the task of display messages and in-app notifications simple. It has three different views inside
Stars: ✭ 3,718 (+6310.34%)
Mutual labels:  notifications, message
React Native In App Notification
🔔 Customisable in-app notification component for React Native
Stars: ✭ 206 (+255.17%)
Mutual labels:  notifications, dropdown
JDropDownAlert
Simple DropDown Alert View For Any iOS Projects.
Stars: ✭ 71 (+22.41%)
Mutual labels:  alert, dropdown

SpaceView

CI Status Version License Platform

space

Example

SpaceView

  • SpaceView On top
//View will be shown on the top
self.showSpace(title: "title", description: "description", spaceOptions: [.spacePosition(position: .top)
])

SpaceView

  • SpaceView On bottom
//View will be shown at the bottom
self.showSpace(title: "title", description: "description", spaceOptions: [.spacePosition(position: .bot)
])

SpaceView

  • SpaceView with default styles
self.showSpace(title: "title", description: "description", spaceOptions: [.spaceStyle(style: .success)
])
  • SpaceView set time to hide
//SpaceView will not hide
self.showSpace(title: "title", description: "description", spaceOptions: [.spaceTimer(timer: 3.0)
])
  • SpaceView set autohide
//View will hide after 3 second
self.showSpace(title: "title", description: "description", spaceOptions: [ .shouldAutoHide(should: false)
])
  • SpaceView set image
//Image which will be shown on the right side of spaceView
self.showSpace(title: "title", description: "description", spaceOptions: [.image(img: UIImage()),
])
  • SpaceView set swipe and tap handler
//Set the your custom handlers. By default tap handler will hide SpaceView. 
//SwipeAction will perform after user did swipe SpaceView
self.showSpace(title: "title", description: "description", spaceOptions: [
.swipeAction {print("SPACE VIEW DID SWIPE")}, 
.tapAction {print("SPACE VIEW DID TAP")}
])

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

  • iOS 8.0
  • Xcode 8.2

Installation

SpaceView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SpaceView"

Author

Xopoko, [email protected]

License

SpaceView is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].