cloudbase_ce 2.0.3 cloudbase_ce: ^2.0.3 copied to clipboard
Cloudbase SDK community edition. All APIs are consistent to the official with null-safety.
CloudBase Flutter SDK Community Edition #
描述 #
腾讯云·云开发的 Flutter 插件,更多的云开发 Flutter 插件请见云开发文档。
此版本为官方空安全版本的临时替代包,用于升级空安全使用,所有官方 API 不变,直接替换使用.
cloudbase_ce 将以下包全部都集成在了当中(就图个省事~)
平台支持 #
Platform | Android | iOS |
---|---|---|
Linux | ✅ | - |
macOS | ✅ | ✅ |
Windows | ✅ | - |
已迁移的包 #
Package | Version | Status |
---|---|---|
cloudbase_core | ✅ | |
cloudbase_auth | ✅ | |
cloudbase_database | ✅ | |
cloudbase_function | ✅ | |
cloudbase_storage | ✅ |
安装 #
在 flutter 项目的 pubspec.yaml
文件的 dependencies
中添加
dependencies:
cloudbase_ce:
简单示例 #
import 'package:cloudbase_ce/cloudbase_ce.dart';
// 初始化 CloudBase
CloudBaseCore core = CloudBaseCore.init({
// 填写你的云开发 env
'env': 'your-env-id'
});