As a developer i want to use Gap to display an empty widget.
Previously for spacing i used many SizedBox() and Gap() successfully replace them.
But for empty spacing / widget, can we use Gap ? Is Gap as performance as SizedBox ? (Is Gap(0) a good practice ?)
@override
Widget build(BuildContext context) {
if (enabled) return child;
return const Gap(0);
// return const SizedBox();
}