diff options
author | Allan Wang <me@allanwang.ca> | 2017-08-05 23:10:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-05 23:10:28 -0700 |
commit | 187d8e64dc7189f63707d154166867084662dbe3 (patch) | |
tree | 372503ac381f12a905a0608519228f9792bb1c0b /README.md | |
parent | caaa5653deda0640a475d0ccad6daeb7852502f7 (diff) | |
download | kau-187d8e64dc7189f63707d154166867084662dbe3.tar.gz kau-187d8e64dc7189f63707d154166867084662dbe3.tar.bz2 kau-187d8e64dc7189f63707d154166867084662dbe3.zip |
Create debounce and update searchview (#27)
* Prepare version
* Create debounce base
* Add debouncer and fix transition crash
* Add debounce docs
* Update links
* Update searchview docs
* Test without a ref
* Add links to core components
* Update links
* Update to bullet points
* Test core md
* Test slash
* Test slash
* Specify implemented dependencies
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 19 insertions, 8 deletions
@@ -57,11 +57,25 @@ dependencies { # Submodules > Linked to their respective docs.<br/> -> Included dependencies are only those with exposed APIs; see [new dependency configurations](https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations). +> Included dependencies are only those with exposed APs; see [new dependency configurations](https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations).<br/> +> Implemented dependencies are wrapped in parentheses. ## [Core](core#readme) * Collection of extension functions and small helper methods applicable in almost any application. -* Notable features: KPrefs, Changelog XML, Kotterknife, Ripple Canvas, Delegates, Swipe, Lazy Resettables, Extensions, Email Builder +* Notable features: + * [KPrefs](core#kprefs) + * [Changelog XML](core#changelog-xml) + * [FAQ XML](core#faq-xml) + * [Kotterknife](core#kotterknife) + * [Ripple Canvas](core#ripple-canvas) + * [MeasureSpecDelegate](core#measure-spec-delegate) + * [CollapsibleViewDelegate](core#collapsible-view-delegate) + * [Swipe](core#swipe) + * [Debounce](core#debounce) + * [Timber Logger](core#timber-logger) + * [Email Builder](core#email-builder) + * [Extension Functions](core#extension-functions) + * [Lazy Resettable](core#lazy-resettable) * Includes [`AppCompat`](https://developer.android.com/topic/libraries/support-library/index.html), [`Material Dialogs (core)`](https://github.com/afollestad/material-dialogs), @@ -87,7 +101,7 @@ dependencies { ## [Color Picker](colorpicker#readme) * Implementation of a color picker dialog with subtle transitions and a decoupled callback * Includes `:core`, -[`Material Dialogs (commons)`](https://github.com/afollestad/material-dialogs) +([`Material Dialogs (commons)`](https://github.com/afollestad/material-dialogs)) ## [KPref Activity](kpref-activity#readme) * Fully programmatic implementation of a Preference Activity, backed by RecyclerViews @@ -97,14 +111,11 @@ dependencies { * Fully functional image and video pickers, both as an overlay and as a requested activity. * Includes `:core-ui`, [`Glide`](https://github.com/bumptech/glide), -[`Blurry`](https://github.com/wasabeef/Blurry) +([`Blurry`](https://github.com/wasabeef/Blurry)) ## [SearchView](searchview#readme) * Material searchview with kotlin bindings -* Includes `:core-ui`, `:adapter`, -[`RxAndroid`](https://github.com/ReactiveX/RxAndroid), -[`RxKotlin`](https://github.com/ReactiveX/RxKotlin), -[`RxBinding`](https://github.com/JakeWharton/RxBinding) +* Includes `:core-ui`, `:adapter` ----------- |