getThemeIndex static method
Implementation
static int getThemeIndex() {
final String theme = getThemeMode().name;
int index = 0;
switch (theme) {
case 'dark':
index = 1;
break;
case 'light':
index = 2;
break;
default:
break;
}
return index;
}