12 lines
257 B
Kotlin
12 lines
257 B
Kotlin
package kotlinx.android.synthetic.layout.view
|
|
|
|
import android.app.Activity
|
|
import android.app.Fragment
|
|
import android.view.View
|
|
import android.widget.*
|
|
import kotlin.internal.flexible.ft
|
|
|
|
val View.button: ft<View, View?>
|
|
get() = findViewById(0) : View
|
|
|