Last updated:
0 purchases
nexaflow flutter sdk
Nexaflow SDK Flutter #
A flutter package for connecting Flutter apps with NexaFlow platform.
Features #
Custom Models for Website, Pages & Block Library
Access Nexaflow api's directly
Getting started #
1. Add this to your package's pubspec.yaml file:
dependencies:
nexaflow_flutter_sdk: ^0.0.1
copied to clipboard
2. Import nexaflow_flutter_sdk
import 'package:nexaflow_flutter_sdk/nexaflow_flutter_sdk.dart';
copied to clipboard
Usage #
NexaflowSdk sdk = NexaflowSdk(apiKey: 'API_KEY');
try {
List<Website> websites = await sdk.getAllWebsites();
Website website = await sdk.getWebsiteById(websiteId: websites.first.id);
print(website.id);
print(website.pages.length);
} catch (e) {
print(e);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.