I just started learning with this amazing appery.io. One of the first challenges I am facing now is with the first page that contains a menu of supported languages.
I followed this great tutorial (http://devcenter.appery.io/tutorials/...). However, I think this tutorial teaches how to update the app langauge based on the device/browser language.
What I am looking for is that the user can choose the language of the app apart from the device language. A button once clicked shows a list of supported languages. To my knowledge, I can save the language into localStorage and retrieve from localStorage instead using
navigator.language || navigator.userLanguage;
However, I am not sure how to store into localStorage and retrieve it from there(I am quite begginer here). I am using the example in the tutorial mentioned above and I wish I can improve it to just use localStorage. I would deeply appreciate any help, or if there is good tutorial in this regard.