gpt4 book ai didi

flutter - 如何为 OutlinedButton 设置主题?

转载 作者:行者123 更新时间:2023-12-05 06:58:12 27 4
gpt4 key购买 nike

我试过使用 ButtonStyle,但出于某种原因它要求使用 MaterialStateProperty:

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

最佳答案

从 flutter 1.20 版本开始,您可以设置如下所示的轮廓按钮主题。引用下面的代码段

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

关于flutter - 如何为 OutlinedButton 设置主题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64698593/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com