Flutter从父小部件继承所有道具

时间:2019-07-08 12:27:58

标签: flutter

我想使拍子上的自定义按钮。这是一些代码:

// class LoadingButton.dart

MaterialButton(
  padding: EdgeInsets.all(Spacing().value(2)),
  textColor: Colors.white,
  disabledColor: Colors.grey[100],
  ...props
);

如何在不一一说明构造函数的情况下动态添加道具?

我尝试使用...props,但不会添加到道具中。

谢谢

1 个答案:

答案 0 :(得分:1)

Dart中没有这样的东西。仅复制粘贴所有属性将起作用。