Ei kuvausta

Aidan Follestad 481c0b8c88 3.0.0-beta2 5 vuotta sitten
.github 5daf733c58 Split issue template into 2 6 vuotta sitten
art 179ef6dd46 Add LayoutMode for bottom sheets along with setPeekHeight method, resolves #1801 5 vuotta sitten
bottomsheets ccd6521de0 Move darkenColor method to Util.kt 5 vuotta sitten
color b04bb2ac58 Add DialogBehavior API and implement BottomSheet support. Other cleanup to the library and sample 5 vuotta sitten
core bb30d46e77 Fix status bar and navigation bar appearance for bottom sheet dialogs, resolves #1802 5 vuotta sitten
datetime 686baf2d96 Add option to automatically flip to the time page when a date is selected, enabled by default. REsolves #1788. 6 vuotta sitten
documentation 481c0b8c88 3.0.0-beta2 5 vuotta sitten
files ed23388996 Exclude META-INF/atomicfu.kotlin_module in the files module 6 vuotta sitten
gradle cded8465a3 Gradle 5.4.1 6 vuotta sitten
input c90e8144fb Cleanup 6 vuotta sitten
lifecycle 80da79f95e Use jdk8 version of Kotlin dep, resolves #1764 6 vuotta sitten
sample 481c0b8c88 3.0.0-beta2 5 vuotta sitten
.gitignore 190cef020f Updated .gitignore 8 vuotta sitten
.travis.yml 5002541f42 Update Kotlin and Build Tools 6 vuotta sitten
LICENSE.md 8dc88b0095 Version 2, alpha 1 (#1572) 6 vuotta sitten
README.md 481c0b8c88 3.0.0-beta2 5 vuotta sitten
RELEASE_NOTES.md 481c0b8c88 3.0.0-beta2 5 vuotta sitten
bintrayconfig.gradle 5af7b0a18a bintrayUpload task will fail if local.properties variables are missing 6 vuotta sitten
build.gradle 9ed9aec143 Use dot indicators for view pager in ARGB selector instead of tabs 6 vuotta sitten
dependencies.gradle 481c0b8c88 3.0.0-beta2 5 vuotta sitten
gradle.properties 8dc88b0095 Version 2, alpha 1 (#1572) 6 vuotta sitten
gradlew bc48fd9fcf Update Gradle wrapper to 3.3 8 vuotta sitten
gradlew.bat bc48fd9fcf Update Gradle wrapper to 3.3 8 vuotta sitten
settings.gradle b04bb2ac58 Add DialogBehavior API and implement BottomSheet support. Other cleanup to the library and sample 5 vuotta sitten
spotless.gradle 3331a9cd83 Update license header 6 vuotta sitten
spotless.license.kt 3331a9cd83 Update license header 6 vuotta sitten
versionsPlugin.gradle 6377018135 Version 2.0.0-beta1 6 vuotta sitten

README.md

Material Dialogs

Build Status Codacy Badge License


Showcase

Modules

The core module is the fundamental module that you need in order to use this library. The others are extensions to core.

Core

Core

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.0.0-beta2'
}

Input

Input

The input module contains extensions to the core module, such as a text input dialog.

dependencies {
  ...
  implementation 'com.afollestad.material-dialogs:input:3.0.0-beta2'
}

Files

Files

The files module contains extensions to the core module, such as a file and folder chooser.

dependencies {
  ...
  implementation 'com.afollestad.material-dialogs:files:3.0.0-beta2'
}

Color

Color

The color module contains extensions to the core module, such as a color chooser.

dependencies {
  ...
  implementation 'com.afollestad.material-dialogs:color:3.0.0-beta2'
}

DateTime

DateTime

The datetime module contains extensions to make date, time, and date-time picker dialogs.

dependencies {
  ...
  implementation 'com.afollestad.material-dialogs:datetime:3.0.0-beta2'
}

Bottom Sheets

Lifecycle

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.0.0-beta2'
}

Lifecycle

Lifecycle

The lifecycle module contains extensions to make dialogs work with AndroidX lifecycles.

dependencies {
  ...
  implementation 'com.afollestad.material-dialogs:lifecycle:3.0.0-beta2'
}