Skip to content

Instantly share code, notes, and snippets.

@MazyNoc
Created April 19, 2022 12:21
Show Gist options
  • Save MazyNoc/fb638489be843baf4724c6cc125621fe to your computer and use it in GitHub Desktop.
Save MazyNoc/fb638489be843baf4724c6cc125621fe to your computer and use it in GitHub Desktop.
Helper function to set brightness of the current window in Android
var Window.screenBrightness: Float
set(value) {
val a = this.attributes
a.screenBrightness = value
this.attributes = a
}
get() = this.attributes.screenBrightness
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment