flutter
blinking point
easy way to create a blinking point for your flutter project.
![[2025] Flutter #1 Blinking Point Package flutter #1 blinking point package](https://i0.wp.com/flutterawesome.com/content/images/2018/11/flutter-blinking-point.gif?w=770&ssl=1)
installation
add this to your package’s pubspec.yaml file:
dependencies:
blinking_point: ^1.0.0+2
usage
import the file.
import 'package:blinking_point/blinking_point.dart';
calling the point:
new blinkingpoint(
xcoor: 100.0, // the x coordinate of the point
ycoor: 500.0, // the y coordinate of the point
pointcolor: colors.red, // the color of the point
pointsize: 10.0, // the size of the point
);
Comments are closed.