我看到了条件颜色的这个答案
我正在尝试对填充做同样的事情
Padding(
padding: const EdgeInsets.only(bottom: isLogin ? 58.0 : 10.0),
)
它不被接受。
谢谢
我看到了条件颜色的这个答案
我正在尝试对填充做同样的事情
Padding(
padding: const EdgeInsets.only(bottom: isLogin ? 58.0 : 10.0),
)
它不被接受。
谢谢
你可以像这样使用它:
padding: isLogin
? EdgeInsets.only(bottom: 58.0)
: EdgeInsets.only(bottom: 10.0),
编辑:
或者像这样删除const
。
padding: EdgeInsets.only(bottom: isLogin ? 58.0 : 10.0),
const
您可以从此处阅读 的用法。