能效核心屏蔽功能应用到 RSI启动器,以让开发板使用此功能。

This commit is contained in:
2023-11-28 20:04:15 +08:00
parent 06c581cd80
commit 4f6623a4cd
8 changed files with 45 additions and 33 deletions

View File

@ -31,14 +31,19 @@ class AppUI extends BaseUI {
restorationScopeId: "Doctor",
themeMode: ThemeMode.dark,
theme: FluentThemeData(
brightness: Brightness.dark,
fontFamily: "SourceHanSansCN-Regular",
navigationPaneTheme: NavigationPaneThemeData(
backgroundColor: AppConf.colorBackground,
),
menuColor: AppConf.colorMenu,
micaBackgroundColor: AppConf.colorMica,
),
brightness: Brightness.dark,
fontFamily: "SourceHanSansCN-Regular",
navigationPaneTheme: NavigationPaneThemeData(
backgroundColor: AppConf.colorBackground,
),
menuColor: AppConf.colorMenu,
micaBackgroundColor: AppConf.colorMica,
buttonTheme: ButtonThemeData(
defaultButtonStyle: ButtonStyle(
shape: ButtonState.all(RoundedRectangleBorder(
borderRadius: BorderRadius.circular(4),
side: BorderSide(color: Colors.white.withOpacity(.01)))),
))),
debugShowCheckedModeBanner: false,
home: BaseUIContainer(
uiCreate: () => IndexUI(), modelCreate: () => IndexUIModel()),