flutter-styleguide icon indicating copy to clipboard operation
flutter-styleguide copied to clipboard

Use SizedBox() as a no-op

Open rapPayne opened this issue 5 years ago • 0 comments

When you don't want to show a "nothing", render a SizedBox().

For instance,

if (snapshot.connectionState == ConnectionState.none) { return const SizedBox(); } else if (snapshot.hasData) { return someOtherWidgets; }

rapPayne avatar Feb 11 '20 20:02 rapPayne