I am trying to implement a darkmode to my app. As I understand, the way to go always was to have an entry “darkmode” as a yes/no in the user and toggle it with the conditionals of styles. However, as I have learned, this feature seems to have been disabled a few years ago.
So my question would be, how can I implement a darkmode where the user toggles it and I can control how an element looks in lightmode and how in darkmode?
Another option is to use the user-based conditions for styles. Within Step 3: Set the conditions on the style, not the element. So all buttons, groups, text, etc that use the style can then be controlled by the style’s conditional formatting. Centralising it will make management and rollout easier going fwd.
Add a field to the user ‘isDarkMode’ yes/no and then it should switch all style conditions like magic.
Unless you would like to go over all of your app elements I wouldn’t suggest you to do it with conditionals.
You can either use a plugin (fast way) or replace the bubble style colors via a script if the user has dark mode toggled on. This works well if you consistently worked with colors in your app.
There’s also plugins like userway that give you a darkmode option. Not perfect, but it can help you while you are migrating to your own darkmode system