🛠️Use Tip
Here's the Guide of how to use Pulse-X in your project.
Depend on it
Run this command:
With Flutter:
$ flutter pub add pulse_xThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
pulse_x: ^1.0.2Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:pulse_x/pulse_x.dart';As an alternative solution, if you wanna use Pulse-X from github manually. Here's the tip:
In your project's pubspec.yaml file, under dependencies: section, use like this.
dependencies:
pulse_x:
git:
url: https://github.com/YeLwinOo-Steve/pulse_x.git
ref: master # master branchLast updated