3

我已经像这样编写了我的自定义主题并将其存储在 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 进行状态管理。

4

1 回答 1

1

尝试像这样使用

style: context.theme.outlinedButtonTheme.style

您正在尝试添加OutlinedButtonThemeData参数类型'ButtonStyle?',这就是给出错误的原因。

于 2022-01-24T07:11:58.753 回答