theme property

ThemeData theme

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

Implementation

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

Implementation

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