All Projects → KI-labs → ki-snackbar

KI-labs / ki-snackbar

Licence: MIT license
An easy to use alternative of Android snackbar for iOS.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to ki-snackbar

Swiftmessages
A very flexible message bar for iOS written in Swift.
Stars: ✭ 6,363 (+52925%)
Mutual labels:  snackbar, iphone-x
FaceAvataaars
Puppeteer Avataaars with your iPhone X (and also test cartoons using BlendShapeRecorder data)
Stars: ✭ 19 (+58.33%)
Mutual labels:  iphone-x
React Hot Toast
Smoking hot React Notifications 🔥
Stars: ✭ 4,282 (+35583.33%)
Mutual labels:  snackbar
DailyFeed
iOS client for newsapi.org
Stars: ✭ 128 (+966.67%)
Mutual labels:  iphone-x
createml-playgrounds
Create ML playgrounds for building machine learning models. For developers and data scientists.
Stars: ✭ 82 (+583.33%)
Mutual labels:  ios12
STKitSwift
STKitSwift is a collection of useful classes and categories to develop Apps faster.
Stars: ✭ 56 (+366.67%)
Mutual labels:  ios12
React Native Smart Tip
🔥🔥🔥Toast , SnackBar , Modal , Show Toast above Modal
Stars: ✭ 198 (+1550%)
Mutual labels:  snackbar
iOS-Shortcuts-Reference
Reference documentation for the iOS Shortcuts app file structure
Stars: ✭ 89 (+641.67%)
Mutual labels:  ios12
NotchToolkit
Use the iPhone X notch in creative ways 👩‍🎨👨‍🎨.
Stars: ✭ 55 (+358.33%)
Mutual labels:  iphone-x
info-bar-compose
An Android Jetpack Compose library for displaying on-screen messages. (simplified Snackbar alternative)
Stars: ✭ 80 (+566.67%)
Mutual labels:  snackbar
wwdc2018
You read my developer triceraptus migration notes from dub dub dc 2018
Stars: ✭ 48 (+300%)
Mutual labels:  ios12
ARMultiuser
this demo use arkit 2.0, realize multiplayer play together! The project refers to the official demo!
Stars: ✭ 30 (+150%)
Mutual labels:  ios12
Swatch
Watcher for Unit Tests written in Swift
Stars: ✭ 55 (+358.33%)
Mutual labels:  iphone-x
ProteinBar
An Android Kotlin library for fully customizable Snackbars
Stars: ✭ 14 (+16.67%)
Mutual labels:  snackbar
xcode-9-ios-12-support
To get support for running on iOS 12 device from Xcode 9 itself.
Stars: ✭ 54 (+350%)
Mutual labels:  ios12
Snackbar
A tiny browser library for showing a brief message at the bottom of the screen (1kB gzipped).
Stars: ✭ 224 (+1766.67%)
Mutual labels:  snackbar
AutoPassword-iOS12-Demo
iOS12 - Password AutoFill, Automatic Strong Password, and Security Code AutoFill - https://developerinsider.co/ios12-password-autofill-automatic-strong-password-and-security-code-autofill/
Stars: ✭ 20 (+66.67%)
Mutual labels:  ios12
mosha-vue-toastify
A light weight and fun Vue 3 toast or notification or snack bar or however you wanna call it library.
Stars: ✭ 185 (+1441.67%)
Mutual labels:  snackbar
MaterialDesignSample
Android transition元素共享动画、CoordinatorLayout、AppBarLayout、FloatingActionButton、BottomSheet、SnackBar、自定义behavior实现动画效果。
Stars: ✭ 28 (+133.33%)
Mutual labels:  snackbar
flutter examples
Random flutter examples
Stars: ✭ 18 (+50%)
Mutual labels:  snackbar

KISnackBar

This is an easy to use alternative of Android snackbar for iOS.

Demo

KISnackBar Demo

Installation

CocoaPods

For KISnackBar, use the following entry in your Podfile:

pod 'KISnackBar'

Then run pod install in your project directory.

Do not forget to import the framework with import KISnackBar in any file you'd like to use KISnackBar.

Carthage

For KISnackBar, use the following entry in your Cartfile:

github "KI-labs/ki-snackbar"

Run carthage update to build the framework and drag the built KISnackBar.framework into your Xcode project.

Do not forget to import the framework with import KISnackBar in any file you'd like to use KISnackBar.

Manually

Add KISnackBar.swift to your project 🎉.

Usage

KISnackBar.shared.show(title: "Transaction has been completed.", duration: .short)
KISnackBar.shared.show(title: "We need your permission.", buttonTitle: "Open Settings", 
			duration: .short) {			
    // Open Settings
}
KISnackBar.shared.show(backgroundColor: .black, title: "We need your permission.", titleColor: .white, 
			buttonTitle: "Open Settings", buttonTitleColor: .white, duration: .long) {
    // Open Settings
}

There is also an Example project in the repo which you can try KISnackBar

License

KISnackbar is released under an MIT license. See LICENSE for more information.

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].