Skip to content

Instantly share code, notes, and snippets.

@dbarks1024
Created October 2, 2018 13:30
Show Gist options
  • Save dbarks1024/596433359499b0dd19ab8d898669fa9d to your computer and use it in GitHub Desktop.
Save dbarks1024/596433359499b0dd19ab8d898669fa9d to your computer and use it in GitHub Desktop.
override fun onBindSlice(sliceUri: Uri): Slice? {
context ?: return null
return when (sliceUri.path) {
"/toggle" -> {
// Display toggle slice
}
else -> {
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment