We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In some cases it can be useful to have a EdgeInsetsGeometry to provide directly under a Card::margin or Container::padding.
EdgeInsetsGeometry
Card::margin
Container::padding
Something like this would be super useful:
Card( margin: SleekInsets.allBig.toEdgeInserts(), child: SleekPadding( padding: SleekInsets.big(), child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[_Form()], ), ), ),
Or having a SleekInsets extending EdgeInsetsGeometry to be able to use them directly
The text was updated successfully, but these errors were encountered:
I know workaround is easy:
margin: EdgeInsets.all(SleekSpacing.of(context).big),
but I think it can be much more easy and natural to use :)
Sorry, something went wrong.
No branches or pull requests
In some cases it can be useful to have a
EdgeInsetsGeometry
to provide directly under aCard::margin
orContainer::padding
.Something like this would be super useful:
Or having a SleekInsets extending
EdgeInsetsGeometry
to be able to use them directlyThe text was updated successfully, but these errors were encountered: