in my case I need to set a widget in a column under a condition simply see :
isSomeBool ? MyWidget() : thatLeastExpensiveWidget()
I can use just SizedBox
or Container
simply, but are they the least expensive widgets in flutter that we can use or is there any widget made for this purpose only
and I'm interested to know also what's the most expensive widget that flutter can build
Thanks