A package to display blinking point to your mobile app in Flutter

admin

Easy way to create a blinking point for your Flutter project.

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+6

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
);

Demo

Demo

Credit (github url) : https://github.com/Aleadinglight/Flutter-Blinking-Point

Next Article : https://flutterappdev.com/2019/01/25/whatsapp-ui-clone-in-flutter-flutter-app-development/

Leave a Comment