glassycontainer 0.0.1
glassycontainer: ^0.0.1 copied to clipboard
A new Flutter project.
TODO: Put a short description of the package here that helps potential users know whether this package might be useful for them.
Features #
TODO: List what your package can do. Maybe include images, gifs, or videos.
Getting started #
TODO: List prerequisites and provide or point to information on how to start using the package.
Usage #
TODO: Include short and useful examples for package users. Add longer examples
to /example folder.
class GlassyContainer extends StatelessWidget {
const GlassyContainer({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Center(
child: GlassyContainer(
child: Center(child: Text("we are testing")),
height: 200,
width: 200,
color: Colors.white,
blur: 20,
opacity: 0.3,
radius: 30,
//Gradient for your GlassyContainer
gradient: LinearGradient(colors: [Colors.red, Colors.yellow]),
),
);
}
}
|
|
Additional information #
Check our git repo for contribution or any issue.