From d398ac70c537c4a8e08f39bc6c362f74c41474ad Mon Sep 17 00:00:00 2001 From: "Lunkov_A@utkonos.ru" Date: Wed, 15 Jul 2020 21:28:04 +0300 Subject: [PATCH] readme fix --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 127ddf1..5e32203 100644 --- a/README.md +++ b/README.md @@ -225,9 +225,10 @@ val greetingIsLoading: Boolean get() = ::greeting.isLoading And also you can reload your data: ```kotlin fun reloadGreeting() { + // The suspend lambda will be called again and `isLoading` will become `true`. + // After that, the data binding will be called and the ProgressBar wil be shown again at loading time. ::greeting.reload() } ``` -The suspend lambda will be called again and `isLoading` will become `true`. After that, the data binding will be called and the ProgressBar wil be shown again at loading time. ***For detailed examples see module `app`.*** \ No newline at end of file