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.
In your pubspec.yaml
dependencies:
diagonal_decoration: ^1.0.2
Just add DiagonalDecoration or MatrixDecoration to your Container's decoration parameter
return Container(
width: 200,
height: 200,
decoration: DiagonalDecoration(),
);
decoration: const DiagonalDecoration(
lineColor: Colors.black,
backgroundColor: Colors.grey,
radius: Radius.circular(20),
lineWidth: 1,
distanceBetweenLines: 5,
)
Check out other Yako packages: Badges, Settings UI, Status Alert, Full Screen Menu and more to come!