Last updated:
0 purchases
rotating shape
Rotating shape animator
Features #
Animated dynamic sequences
The widget can help you build a better UI in your next app by animating any widget you have.
Easily configurable widget
You can customize everything in this widget.
Invert the animation
Choose the animation direction
Installing #
In your pubspec.yaml file add:
dependencies:
rotating_shape: any
copied to clipboard
In your code import and use the package:
import 'package:rotating_shape/rotating_shape.dart';
copied to clipboard
Usage #
RotatingShape(
size: 20,
itemsDistance: 5,
itemCount: 5,
shape: Shape.rectangle,
reverse: true,
color: Colors.red,
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.grey[200],
),
child: Icon(
Icons.home,
color: Colors.deepOrange[200],
size: 10,
),
),
);
copied to clipboard
See the full example rotating shape.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.