cloudix_hub 1.0.1 copy "cloudix_hub: ^1.0.1" to clipboard
cloudix_hub: ^1.0.1 copied to clipboard

Official Flutter SDK for Cloudix Hub BaaS. Manage users and JSON storage easily.

Cloudix Hub Flutter SDK 🚀 #

English | العربية


العربية #

المكتبة الرسمية لمنصة Cloudix Hub، وهي منصة متكاملة لخدمات الخلفية (BaaS) تهدف لتسهيل عمل المطورين.

المميزات ✨ #

  • 👤 إدارة المستخدمين: تسجيل مستخدمين جدد وتسجيل الدخول بسهولة فائقة.
  • 📦 قاعدة بيانات JSON: تخزين واسترجاع البيانات المرنة المرتبطة بالمستخدمين أو التطبيق.
  • أداء عالٍ: تعتمد على تقنيات سحابية سريعة لضمان أفضل تجربة لمستخدمي تطبيقك.

البداية 🚀 #

قم بإضافة المكتبة إلى ملف pubspec.yaml:

dependencies:
  cloudix_hub: ^1.0.1

طريقة الاستخدام 💻 #

import 'package:cloudix_hub/cloudix_hub.dart';

// تهيئة المكتبة باستخدام مفتاح التطبيق الخاص بك
final hub = CloudixHub(appKey: "YOUR_APP_KEY");

// تسجيل مستخدم جديد
var result = await hub.register(
  username: "ali_arix",
  password: "secure_password",
  email: "ali@example.com"
);

if (result['success']) {
  print("تم تسجيل المستخدم بنجاح! 🎉");
}

English #

The official Flutter SDK for Cloudix Hub, a powerful Backend-as-a-Service (BaaS) designed for modern developers.

Features ✨ #

  • 👤 User Management: Register and login users with zero backend code.
  • 📦 JSON Database: Store and retrieve flexible JSON data collections.
  • Lightweight & Fast: Built for performance and ease of integration.

Getting Started 🚀 #

Add the package to your pubspec.yaml:

dependencies:
  cloudix_hub: ^1.0.1

Usage 💻 #

import 'package:cloudix_hub/cloudix_hub.dart';

final hub = CloudixHub(appKey: "YOUR_APP_KEY");

// Login an existing user
var result = await hub.login(
  username: "ali_arix", 
  password: "secure_password"
);

if (result['success']) {
  print("User logged in! Welcome to Cloudix.");
}

Documentation #

For full API documentation, visit cloudix.lat/docs.

License #

MIT License. See LICENSE file for details.

0
likes
145
points
26
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Official Flutter SDK for Cloudix Hub BaaS. Manage users and JSON storage easily.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

http

More

Packages that depend on cloudix_hub