ResponsivePadding constructor
const
ResponsivePadding({
- Key? key,
- required Widget child,
- EdgeInsets mobile = const EdgeInsets.all(12),
- EdgeInsets tablet = const EdgeInsets.all(24),
- EdgeInsets desktop = const EdgeInsets.all(32),
Implementation
const ResponsivePadding({
super.key,
required this.child,
this.mobile = const EdgeInsets.all(12),
this.tablet = const EdgeInsets.all(24),
this.desktop = const EdgeInsets.all(32),
});