In the App opposite, there are 4 Icons (phone, tablet, laptop, desktop) inside 4 rectangular boxes. Clicking on an particular Icon changes the color of the box to orange to show it has been selected. Clicking again de-selects.
How can Power Apps automatically highlight the previously selected Icons the next time the user starts the App?
I wrote about using the Power Apps SaveData function a few months ago: Local Data Storage and that post is a great place to start for background info on Power Apps SaveData and storing info locally. The technique described here is even more flexible as it can be used with any number of user settings
The Power Apps SaveData and LoadData formulas make it straightforward to store data in the local Sandbox area of a handheld device. The solution is as simple as adding the settings we want to save to a Collection and then using SaveData to save the Collection locally. Then, every time the Apps starts, the LoadData function loads the saved Collection back into the app. Simple as that!