We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 900dae2 + 6ed1d6f commit 9944d2aCopy full SHA for 9944d2a
README.md
@@ -282,6 +282,23 @@ observe(viewModel.someLiveData) {
282
}
283
```
284
285
+#### Theme Selection
286
+
287
+```kotlin
288
+currentActivity.showThemeChoiceDialog()
289
+```
290
291
+#### Language Selection
292
293
294
+private val languages = mapOf(
295
+ "English" to "en",
296
+ "Türkçe" to "tr"
297
+)
298
299
+currentActivity.showLanguageChoiceDialog(languages)
300
301
302
#### Loading Images
303
304
```kotlin
0 commit comments