0 purchases
diagonal decoration
Diagonal Decoration #
You can use plain color or gradient for backgrounds, but there is a third option that can make your app look more interesting.
Use this DiagonalDecoration or MatrixDecoration to create custom backgrounds for your containers.
Installing: #
In your pubspec.yaml
dependencies:
diagonal_decoration: ^1.0.2
copied to clipboard
Basic Usage: #
Just add DiagonalDecoration or MatrixDecoration to your Container's decoration parameter
return Container(
width: 200,
height: 200,
decoration: DiagonalDecoration(),
);
copied to clipboard
Advanced usage #
decoration: const DiagonalDecoration(
lineColor: Colors.black,
backgroundColor: Colors.grey,
radius: Radius.circular(20),
lineWidth: 1,
distanceBetweenLines: 5,
)
copied to clipboard
Check out other Yako packages:
Badges,
Settings UI,
Status Alert,
Full Screen Menu and more to come!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.