Pulse-X State Management
  • 📍Pulse-X Overview
    • 🛠️Use Tip
  • STATE MANAGEMENT
    • 💡Simple data
    • 🎢Collection data
    • 🌊Stream data
    • 🔮Future data
  • DEPENDENCY MANAGEMENT
    • 💉Injection
  • 🛣️ROUTE MANAGEMENT
    • 🚂Routing
  • EXAMPLES
    • 🍁Example Projects
  • CONTACT
    • 👨‍💻How to reach me
Powered by GitBook
On this page
  1. Pulse-X Overview

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_x

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  pulse_x: ^1.0.2

Alternatively, 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 branch
PreviousPulse-X OverviewNextSimple data

Last updated 2 years ago

📍
🛠️