mirror of
https://github.com/SimpleMobileTools/Simple-App-Launcher.git
synced 2025-04-17 11:27:30 +02:00
14 lines
242 B
Kotlin
14 lines
242 B
Kotlin
package com.simplemobiletools.applauncher.extensions
|
|
|
|
import android.view.View
|
|
|
|
val View.isVisible: Boolean get() = visibility == View.VISIBLE
|
|
|
|
fun View.hide() {
|
|
visibility = View.GONE
|
|
}
|
|
|
|
fun View.show() {
|
|
visibility = View.VISIBLE
|
|
}
|