In flutter, widgets such as Row/ListView/Stack don\'t handle null children. So if we want to conditionally add widgets as children I u
Row
ListView
Stack
Here's a simpler version I use:
Row( children: [ Text("always included"), skipNulls([ icon, label, ]), ], ); skipNulls(List items) { return items..removeWhere((item) => item == null); }