1

我看到了条件颜色的这个答案

我正在尝试对填充做同样的事情

Padding(
  padding: const EdgeInsets.only(bottom: isLogin ? 58.0 : 10.0),
)

它不被接受。

谢谢

4

1 回答 1

1

你可以像这样使用它:

            padding: isLogin
                ? EdgeInsets.only(bottom: 58.0)
                : EdgeInsets.only(bottom: 10.0),

编辑:

或者像这样删除const

            padding: EdgeInsets.only(bottom: isLogin ? 58.0 : 10.0),

const您可以从此处阅读 的用法。

于 2020-10-13T19:46:10.420 回答