circular_placeholder 0.0.1
circular_placeholder: ^0.0.1 copied to clipboard
Circular Placeholder Widget.
Circular Placeholder #
Preview:
[Preview]
Sample:
class HomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( height: 120, width: 220,
child: CircularPlaceholder( color: Colors.green, strokeWidth: 3, ), ), ), ); } }