Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created September 3, 2020 14:51
Show Gist options
  • Select an option

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

Select an option

Save PatilShreyas/07b91dd5061d887abf9651460958b514 to your computer and use it in GitHub Desktop.
suspend fun setUiMode(uiMode: UiMode) {
dataStore.edit { preferences ->
preferences[IS_DARK_MODE] = when (uiMode) {
UiMode.LIGHT -> false
UiMode.DARK -> true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment