Flutter SDK
Native-feeling Flutter SDK for cross-platform mobile development with Aerostack.
Installation
Add to your pubspec.yaml:
dependencies:
aerostack_flutter: ^0.1.0Basic Usage
import 'package:aerostack_flutter/aerostack_flutter.dart';
void main() async {
final sdk = Aerostack(
apiKey: "ac_secret_...",
);
// Authenticate
final user = await sdk.auth.login("[email protected]", "password");
// Fetch Data
final result = await sdk.db.query(sql: "SELECT * FROM products");
}Supported Features
- Native Performance: Optimized for mobile environments.
- User Auth: Seamless login and session management.
- Offline Support: (Coming Soon) Local-first data synchronization.
- AI Utilities: Pre-built widgets for AI chat interfaces.