语法 if ...[] else ...[]
适合此场景:
return Column(
children: [
if (isSelected) ...[
Container(color: Colors.red),
] else ...[
Container(color: Colors.green)
],
],
);
语法 if ...[] else ...[]
适合此场景:
return Column(
children: [
if (isSelected) ...[
Container(color: Colors.red),
] else ...[
Container(color: Colors.green)
],
],
);
本文标题:Flutter | 在 Widget 里嵌套 if else
本文链接:https://www.haomeiwen.com/subject/avrcfdtx.html
网友评论