Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created September 3, 2020 15:16
Show Gist options
  • Select an option

  • Save PatilShreyas/db3aceb953c6cb759e63d3c240200f3f to your computer and use it in GitHub Desktop.

Select an option

Save PatilShreyas/db3aceb953c6cb759e63d3c240200f3f to your computer and use it in GitHub Desktop.
private fun initViews() {
imageButton.setOnClickListener {
lifecycleScope.launch {
when (isDarkMode) {
true -> settingsManager.setUiMode(UiMode.LIGHT)
false -> settingsManager.setUiMode(UiMode.DARK)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment