Zoff
01/05/2025, 10:42 AMTextField
recevies keyboard input even when its not visible on screen. what can i do?
my guess is that it has something to do with focusRequester
. but still if the textfield is not rendered/composed it should not do anything like thatZach Klippenstein (he/him) [MOD]
01/05/2025, 5:30 PMSkaldebane
01/05/2025, 7:52 PMTextField
. I once did navigation between screens like that, never removing the hidden screens from composition, and faced the same issue.
So yeah, make sure that it's either not focused or is not composed at all.Zoff
01/09/2025, 9:15 AMif (something){
TextField()
} else {
Row() # no textfield here
}
Skaldebane
01/09/2025, 12:12 PMZoff
01/13/2025, 8:52 AMSkaldebane
01/13/2025, 12:25 PMZach Klippenstein (he/him) [MOD]
01/13/2025, 2:26 PM