Cloudix Hub Flutter SDK 🚀
The official Flutter SDK for Cloudix Hub, a powerful Backend-as-a-Service (BaaS) for developers.
Features
- 👤 User Management: Register and login users with ease.
- 📦 JSON Database: Store and retrieve flexible JSON data collections.
- âš¡ Easy to use: Simple API with Dart-friendly classes.
Getting started
Add the package to your pubspec.yaml:
dependencies:
cloudix_hub: ^1.0.0
Usage
Initialize the SDK with your App Key:
import 'package:cloudix_hub/cloudix_hub.dart';
final hub = CloudixHub(appKey: "YOUR_APP_KEY");
// Register a new user
var result = await hub.register(
username: "ali_arix",
password: "secure_password",
email: "ali@example.com"
);
if (result['success']) {
print("User registered successfully!");
}
Documentation
For full API documentation, visit cloudix.lat/docs.
License
MIT License. See LICENSE file for details.