If you 'Add to Home Screen' you don't get the address bar. Effectively fullscreen.
Not sure how that would work with the state being saved in the URL — you'd need to save each routine separately I think.
If you 'Add to Home Screen' you don't get the address bar. Effectively fullscreen.
Not sure how that would work with the state being saved in the URL — you'd need to save each routine separately I think.
Add to Home Screen does give you fullscreen. But if your state is in the URL, here is something I found out the hard way: on iOS, a PWA opened from the home screen has its own localStorage, separate from Safari. My own browser game keeps data in localStorage, and things a user saved in Safari were not there after adding it to the home screen. They had to do it again.
Keeping the state in the URL actually avoids this. There is no storage to be separated. The cost is what perilunar said, one shortcut per routine.