gpt4 book ai didi

android - Flutter:Raw Material Button 和 Material Button 的区别

转载 作者:行者123 更新时间:2023-11-29 14:57:39 24 4
gpt4 key购买 nike

大家好!你今天过得怎样?我希望它很棒 <3

我在这里需要你的一点帮助,我一直在我的代码中使用 Raw Material Button 和 Material button lot,但我不知道 Raw Material button 之间有什么区别和 Material 按钮?

因为它们在使用时看起来很相似。

提前致谢<3

最佳答案

来自类的附件:

MaterialButton is utility class for building Material buttons that depend on the ambient ButtonTheme and Theme.

RawMaterialButton does not use the current Theme or ButtonTheme to compute default values for unspecified parameters.

就是这样 - 区别在于默认值。在引擎盖下 MaterialButton 使用 RawMaterialButton

Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
final ButtonThemeData buttonTheme = ButtonTheme.of(context);

return RawMaterialButton(
onPressed: onPressed,
onHighlightChanged: onHighlightChanged,
// so many properties here...
child: child,
materialTapTargetSize: materialTapTargetSize ?? theme.materialTapTargetSize,
);
}

关于android - Flutter:Raw Material Button 和 Material Button 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59196580/

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