Flutter 小部件中的条件填充
Conditional padding inside Flutter widget
我看到 条件颜色的答案
我正在尝试像这样对填充做同样的事情
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),
您可以阅读 here 中 const
的用法。
我看到
我正在尝试像这样对填充做同样的事情
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),
您可以阅读 here 中 const
的用法。