Show "remote profile" message. (#873)

* Show "remote profile" message. Closes #806

* Improve remote message look
This commit is contained in:
Ivan Kupalov 2018-10-03 21:53:31 +02:00 committed by Konrad Pozniak
commit 6051ffe0b3
6 changed files with 30 additions and 10 deletions

View file

@ -11,9 +11,5 @@ fun View.hide() {
}
fun View.visible(visible: Boolean) {
this.visibility = if(visible) {
View.VISIBLE
} else {
View.GONE
}
this.visibility = if (visible) View.VISIBLE else View.GONE
}