Dealing with autofill

Has anybody here had problems with autofill and F7 React, especially in Android? I can’t find a way to grab the value from the inputs. I’m using standard ListInputs with useState updaters in onChange. I tried useRef but since ListInput wraps on the input element, you can’t get it via ref easily. I also tried good old document.querySelector() to access the field straight in useEffect loop but then for some reason useState updater function refuses to update the value.

I’m getting into a hackety hack territory here, so I thought I would ask here.

You can emulate autofill by doing something like document.querySelector(‘input’).value = ‘foobar’. F7/React fails to react on that, obviously.

Can you elaborate on what you are trying to achieve? Didn’t really get

I’m trying to build a registration/login form that works with autofill functionality.