如何为OutlinedButton设置主题?

时间:2020-11-05 13:51:19

标签: flutter themes

我尝试使用ButtonStyle,但是由于某些原因,它要求提供MaterialStateProperty:

outlinedButtonTheme: OutlinedButtonThemeData(
   style: ButtonStyle(backgroundColor: ... )
),

1 个答案:

答案 0 :(得分:0)

从1.20版本开始,您可以按以下方式设置概述的按钮主题。请参考下面的代码段

return MaterialApp(
      home: Home(),
      theme: ThemeData.from(
        colorScheme: ColorScheme.light(),
      ).copyWith(
        outlinedButtonTheme: OutlinedButtonThemeData(
          style: OutlinedButton.styleFrom(
            primary: Colors.purple,
            backgroundColor: Colors.green,
          ),
        ),
      ),
    );