darkTheme property

ThemeData darkTheme

Sets / gets the dark theme for the CodeMeltedUI.app.

Implementation

static ThemeData get darkTheme => uiState.get<ThemeData>("darkTheme");
void darkTheme=(ThemeData? v)

Implementation

static set darkTheme(ThemeData? v) =>
    uiState.set<ThemeData?>("darkTheme", v, notify: true);