Dark mode hard in Mendix ?

0
how to make dark mode in mendix is there any tutorial for this? is it really hard as people say and how to make it ?
asked
3 answers
0

Hi,

 

You can follow this step by step guide. https://www.mendix.com/blog/how-to-implement-dark-mode-in-your-apps/

 

Thanks

answered
0

Hi Ibrahim,
Please go through the below link, You can make a dark mode.
https://www.clevr.com/blog/add-dark-theme-mendix-app

answered
0

is it for native or web? 
for native you can use the following variable in js: const darkMode = Appearance.getColorScheme() === "dark", to check if the phone is in a dark coloscheme, then if you want to set the color different you can set for example the following to the css attributes of the constants:

primaryLight: darkMode ? "#000000": "#FFFFFF",

answered