In Kotlin you can request if the WiFi adapter is on or off with the following code
This changes the text on a textbox, replace with your textbox.
wifiManager = this.applicationContext.getSystemService(Context.WIFI_SERVICE) as WifiManager textBox.text = "WiFi State = ${wifiManager.wifiState}"
The important part is
wifiManager.wifiState
It will return a number from 0-4 which indicates if it is on or off.
0 = WiFi is being disabled
1 = WiFi Disabled
2 = WiFi is being enabled
3 = WiFi is Enabled
4 = Error