我已经像这样编写了我的自定义主题并将其存储在 Get storage 中。
class Themes {
static final lightTheme = ThemeData(
brightness: Brightness.light,
colorScheme: const ColorScheme.light(),
outlinedButtonTheme: OutlinedButtonThemeData(
style: OutlinedButton.styleFrom(
textStyle: TextStyle(
color: CustomColor.lightLandingScreenTextColor,
),
),
),
);
static final darkTheme = ThemeData(
brightness: Brightness.dark,
colorScheme: const ColorScheme.dark(),
outlinedButtonTheme: OutlinedButtonThemeData(
style: OutlinedButton.styleFrom(
backgroundColor: Colors.red,
textStyle: TextStyle(
color: CustomColor.darkLandingScreenTextColor,
),
),
),
);
}
然后我尝试像这样在我的轮廓按钮上应用我的轮廓按钮主题
SizedBox(
height: 48.h,
width: 155.w,
child: OutlinedButton(
onPressed: () {},
child: Text("SKIP"),
style: OutlinedButton.styleFrom(),
),)
我也尝试像这样分配主题,但这给了我一个错误。
现在如何在我的按钮中分配自定义按钮主题?我正在使用 GetX 进行状态管理。