ElThemeDataGenerate constructor
const
ElThemeDataGenerate({})
生成局部主题配置类,主题类必须提供 theme、darkTheme 默认静态对象:
class MyThemeData {
static const theme = MyThemeData();
static const darktheme = MyThemeData();
const MyThemeData();
}
Implementation
const ElThemeDataGenerate({
this.generateThemeWidget = true,
this.generateAnimatedThemeWidget = false,
this.desc = '',
this.ignoreGlobalTheme = false,
});