From ed1878a14695da5795f52c3f9d4da5959d1db558 Mon Sep 17 00:00:00 2001 From: "Zakaria M. Jawas" Date: Sun, 1 Nov 2020 14:32:45 +0300 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 737df72..5880c88 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ ## Next Release v1.2.0 - [ ] Multiple selection list +- [x] Adding action button ## Release v1.1.0 - [x] Searchable list @@ -53,7 +54,7 @@ for exmaple ```kotlin data class Category(val id: Int, @NameField var name: String) ``` -make sure you annotate your title field in the model class with @NameField otherwise **UnspecifiedFieldNameExpection** will be thrown +make sure to annotate your title field in your model class with @NameField otherwise **UnspecifiedFieldNameExpection** will be thrown **_Step 2_** Build the sheet @@ -160,6 +161,21 @@ default value `false` used to enable the search functionality in the bottom sheet +**setActionButtonTitle(String)_** + +used to change the action button title, default value `Ok` + +**setOnActionCallback(ListBottomSheet)_** + +this is a callback for the action button click listener, it will return an instance of the current sheet so it can be dismissed + +```kotlin +.setOnActionCallback { + Toast.makeText(this, "On Action Button Clicked", Toast.LENGTH_SHORT).show() + it.dismiss() + } +``` + ## Compatibility Minimum Android SDK: API level 16