import 'package:flutter/material.dart'; extension Gap on double { Widget get gapWidth => SizedBox(width: this); Widget get gapHeight => SizedBox(height: this); Widget get gapSliverWidth => SliverToBoxAdapter(child: SizedBox(width: this)); Widget get gapSliverHeight => SliverToBoxAdapter(child: SizedBox(height: this)); }