flutter blinking point
easy way to create a blinking point for your flutter project.
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.