Changing skin at runtime

I am trying to change at run-time:
-app Favicon
-app Colour Schemes
-app Settings like Name, Title, Description

is that possible?

You’re looking for the app settings. In the beta editor it’s the gear icon in the left hand bar. In the classic editor you click the gear icon to the right of your app name and choose Titles and Logos.

Color schemes have their own section of the editor, named “Colour Scheme”.

Thanks @jshaffstall , but I need to change them at run-time.

Ah, sorry, missed that in the post title. I’m pretty sure I’ve seen some posts about changing the color scheme at runtime, here’s one: Change Material Theme color scheme programmatically

2 Likes

Changing color skins has not been supported by Anvil yet. Although Icon, Descriptions and Title might be possible. I once tried to do it myself as well but had failed. This was the script I tried to run.

document.getElementsByTagName('meta')["og:title"].content="New Title"

Maybe someone who is an expert at Javascript can help you with description, icons and title

1 Like

Thanks @jshaffstall and @divyeshlakhotia I’ll try to build something on your suggestions.

1 Like