Files
breez-sdk-liquid/packages/flutter
Erdem Yerebasmaz c798fd882f Update Flutter plugin to match Dart plugin version (#794)
* Reference the same Flutter plugin version for Dart plugin instead of latest

* fix: removed breez-sdk-liquid-dart tag check

Removed if tag exists on remote as this script is run before the package is published
2025-03-26 00:43:46 +03:00
..
2024-10-18 11:32:54 +02:00
2025-02-24 16:15:27 +02:00
2025-03-24 11:46:02 +00:00
2025-02-24 16:15:27 +02:00
2024-07-09 17:25:05 +02:00

Breez Liquid SDK plugin

pub package

Table of contents

Platform Support

Android iOS MacOS Web Linux Windows

Requirements

  • Flutter >=3.27.0
  • Dart >=3.6.0 <4.0.0
  • iOS >=13.0
  • MacOS >=15.0
  • Android compileSDK 35
  • Java 1.8
  • Android Gradle Plugin >=7.1.2
  • Gradle wrapper >=7.4

Description

This is a Flutter package that wraps the Dart bindings of Breez Liquid SDK.

Installation

To use this plugin, add breez_sdk_liquid as a dependency in your pubspec.yaml file.

Usage

To start using this package first import it in your Dart file.

import 'package:flutter_breez_liquid/flutter_breez_liquid.dart';

Call initialize() to initialize Breez Liquid SDK, preferably on main.dart:

import 'package:flutter_breez_liquid/flutter_breez_liquid.dart' as liquid_sdk;

void main() async {
    // Initialize library
    await liquid_sdk.initialize();
}

Please refer to Dart examples on Breez Liquid SDK documentation for more information on features & capabilities of the Breez Liquid SDK.

Documentation