Skip to content

Commit

Permalink
#62: Spread over multi lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Entreco committed Mar 27, 2021
1 parent 769534c commit b64038a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Play01Navigator @Inject constructor(

fun showSnackbar(percentage: Int) {
if (snackbar == null) {
snackbar = Snackbar.make(activity.findViewById(R.id.play_root), "Downloading Soundpack", Snackbar.LENGTH_INDEFINITE)
snackbar = Snackbar.make(activity.findViewById(R.id.play_root), "Downloading Soundpack\nInitializing", Snackbar.LENGTH_INDEFINITE)
snackbar?.show()
} else if (snackbar?.isShown == true) {
snackbar?.setText("Downloading Soundpack\nProgress ($percentage%)")
Expand Down

0 comments on commit b64038a

Please sign in to comment.