Is there any way to detect focus events with deskt...
# multiplatform
p
Is there any way to detect focus events with desktop windows themselves. I've tried to append the following three modifiers with the top parent composable filling up the entire
window
, in order to catch any focus change events, but without much luck
Copy code
.fillMaxSize()
.onFocusChanged { // log out FocusState }
.onFocusEvent { // .... }
.onFocusedBoundsChanged { // .... }