Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Material Dialogs | 19,510 | 1 | 4 months ago | 43 | February 21, 2021 | 111 | apache-2.0 | Kotlin | ||
😍 A beautiful, fluid, and extensible dialogs API for Kotlin & Android. | ||||||||||
Sudo | 679 | 2 years ago | 5 | November 17, 2021 | 8 | mit | Go | |||
sudo for windows | ||||||||||
Android Floatingtutorialactivity | 349 | 4 | 10 months ago | 7 | July 22, 2022 | 1 | other | Kotlin | ||
A light-weight, easy-to-implement, and easy-to-look-at way to do a tutorial pager or dialog on Android | ||||||||||
Lore | 184 | 3 | 25 | 3 years ago | 42 | June 24, 2018 | 23 | mit | JavaScript | |
Respectfully opinionated convention-driven framework for building React applications. Built on React, Webpack, Redux, and React Router. | ||||||||||
Angular Material Popup Dialog Model | 49 | a year ago | 18 | TypeScript | ||||||
Angular Material Popup Dialog & Model | ||||||||||
Deep_dialog_tutorial | 42 | 3 years ago | 1 | mit | Python | |||||
tutorial for deep learning dialogue models | ||||||||||
Dojo Tutorial | 26 | 5 years ago | 1 | HTML | ||||||
Dojo Toolkit 1.9 Tutorial | ||||||||||
Python Tutorials | 23 | 4 years ago | 1 | Python | ||||||
A set of python tutorials for FIFE | ||||||||||
Wxwidgetstutorials | 18 | 6 years ago | C++ | |||||||
wxWidgets Tutorials | ||||||||||
Angular Material Confirm Dialog | 16 | a year ago | 18 | TypeScript | ||||||
Angular Material Confirm Dialog |
The core module is the fundamental module that you need in order to use this library. The others are extensions to core.
Please note that since Material Dialogs 2.x.x, this library only supports Kotlin. The latest Java version is 0.9.6.0
and can be found here. Note that 0.9.6.0 is unsupported, bugs & improvements will not be made to that version.
The core
module contains everything you need to get started with the library. It contains all
core and normal-use functionality.
dependencies {
...
implementation 'com.afollestad.material-dialogs:core:3.3.0'
}
The input
module contains extensions to the core module, such as a text input dialog.
dependencies {
...
implementation 'com.afollestad.material-dialogs:input:3.3.0'
}
The files
module contains extensions to the core module, such as a file and folder chooser.
dependencies {
...
implementation 'com.afollestad.material-dialogs:files:3.3.0'
}
The color
module contains extensions to the core module, such as a color chooser.
dependencies {
...
implementation 'com.afollestad.material-dialogs:color:3.3.0'
}
The datetime
module contains extensions to make date, time, and date-time picker dialogs.
dependencies {
...
implementation 'com.afollestad.material-dialogs:datetime:3.3.0'
}
The bottomsheets
module contains extensions to turn modal dialogs into bottom sheets, among
other functionality like showing a grid of items. Be sure to checkout the sample project for this,
too!
dependencies {
...
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
}
The lifecycle
module contains extensions to make dialogs work with AndroidX lifecycles.
dependencies {
...
implementation 'com.afollestad.material-dialogs:lifecycle:3.3.0'
}