Skip to content

Instantly share code, notes, and snippets.

@zmdominguez
Last active July 8, 2019 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zmdominguez/3b4047bd17f3bceda4e7b9bf70c9994c to your computer and use it in GitHub Desktop.
Save zmdominguez/3b4047bd17f3bceda4e7b9bf70c9994c to your computer and use it in GitHub Desktop.
fun Context.showDebugToast(message: String, settingsInteractor: SettingsInteractor) {
if (settingsInteractor.shouldShowDebugToasts()) {
Toast.makeText(context, message, Toast.LENGTH_LONG).show()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment