**1.0.1**

This commit is contained in:
2026-02-25 13:33:17 +02:00
parent 50da40e044
commit 2699d89bcd
5 changed files with 13 additions and 3 deletions

View File

@@ -42,6 +42,9 @@ extension QuickSimpleWidgets on Widget {
/// Changes the [opacity] of the widget.
Widget opacity(num o) => Opacity(opacity: o.toDouble(), child: this);
/// Applies uniform padding around the widget.
Widget pad(EdgeInsetsGeometry p) => Padding(padding: p, child: this);
/// Applies uniform padding around the widget.
Widget padAll(num p) => Padding(padding: p.padAll, child: this);