I've built a React app which works fine in the computer, but the button won't fire on my iOS phone.
I've tried adding the cursor:'pointer' like that:
<button onClick={() => setdata((previous) => !previous)} type="button" style={{ cursor: 'pointer' }}>Start</button>
I've also added it in the .css of the button. (in all 3 widths I'm using, for mobile/tablet/pc)
Tried onMouseClick / onClick / etc.. doesn't help.
Any ideas?