Skip to content

Meniny/AndroidDialog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

18 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Meet AndroidDialog

Banner

Author EMail MIT
Version Platforms Swift
Build Passing Cocoapods Carthage SPM

๐Ÿต Introduction

AndroidDialog is an Android Dialog framework for iOS.

๐Ÿ“‹ Requirements

Type Requirement

Platform

iOS

8.0+

macOS

N/A

tvOS

N/A

watchOS

N/A

Linux

N/A

IDE

Xcode

9.3+

Language

Swift

4.1+

๐Ÿ“ฒ Installation

CocoaPods

AndroidDialog is available on CocoaPods.

use_frameworks!
pod 'AndroidDialog'

Manually

Copy all files in the AndroidDialog directory into your project.

๐Ÿ›Œ Dependency

โค๏ธ Contribution

You are welcome to fork and submit pull requests.

๐Ÿ”– License

AndroidDialog is open-sourced software, licensed under the MIT license.

๐Ÿ”ซ Usage

import AndroidDialog
let dialog = AndroidDialog.init()
dialog.setTitle("Alert")
dialog.setMessage("This is a message!!! O(โˆฉ_โˆฉ)O~")
dialog.setPositiveButton("Done") { (d) in
  d.hide()
}
dialog.coverType = .blurred(.dark)
dialog.show(to: self.view)