circular_reveal 0.0.3 circular_reveal: ^0.0.3 copied to clipboard
Give circular reveal animation to any widget
Install #
dependencies: circular_reveal: 0.0.1
Demo Animation #
Getting Started #
class ButtonWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return RevealWidget(Container(
color: Colors.red,
width: 100,
height: 60,
child: Align(
alignment: Alignment.center,
child: Text(
"Hello",
style: TextStyle(fontSize: 20),
),
)));
}
}