container_gradient_border 0.0.1
container_gradient_border: ^0.0.1 copied to clipboard
A new Flutter package for providing gradient container border.
A Widget which provide gradient border to container.
Features #
There are number of properties that you can modify.
- Gradient color list
- height
- width
- BorderWidth
- GradientStart
- GradientEnd
- ContainerColor
- BorderRadius
- child
- childAlignment
- padding
'''dart ContainerGradientBorder( height: 200, width: 300, borderWidth: 7, colorList: const [Colors.blue, Colors.green, Colors.yellow], containerColor: Colors.red.shade400, borderRadius: 40, start: Alignment.topCenter, end: Alignment.bottomCenter, child: const Text("Test"), childAlignment: Alignment.center, padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10), ), '''
Usage #
TODO: Include short and useful examples for package users. Add longer examples
to /example folder.
const like = 'sample';
Additional information #
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.