gradient_borders 0.1.0 gradient_borders: ^0.1.0 copied to clipboard
Gradient borders for inputs and containers
Gradient borders #
Various borders that use gradient instead of boring plain colors.
Usage #
Box borders: #
Change your container borders to use fancy gradients:
Container(
width: 100,
height: 100,
decoration: BoxDecoration(
border: const GradientBoxBorder(
gradient: LinearGradient(colors: [Colors.blue, Colors.red]),
width: 4,
),
borderRadius: BorderRadius.circular(16)
),
),
Works with both: border radius, and with BoxShape.circle
Input borders #
TBW