Skip to content

Commit

Permalink
Refactoring project name
Browse files Browse the repository at this point in the history
  • Loading branch information
halifox committed Jan 1, 2025
1 parent b280a20 commit 49c3932
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .dart_tool/package_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"languageVersion": "3.6"
}
],
"generated": "2024-12-29T08:38:29.335178Z",
"generated": "2025-01-01T06:08:06.983993Z",
"generator": "pub",
"generatorVersion": "3.6.0",
"flutterRoot": "file:///C:/Users/user/Documents/flutter",
Expand Down
1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# flutter_s3_storage
# dart_s3_storage

`flutter_s3_storage` 是一个 Flutter 库,提供统一接口,兼容所有支持 S3 协议的对象存储服务。它简化了在不同 S3 存储平台之间的集成与操作,适用于 Flutter 应用的多平台存储需求
`dart_s3_storage` 是一个简化 S3 协议兼容的对象存储服务集成与操作的库

---

## ⚙️ 功能

- 🌐 支持所有兼容 S3 协议的对象存储服务(如 AWS S3、阿里云 OSS、Google Cloud Storage 等)
- 📱 简化了 Flutter 应用的存储操作
- 🌐 支持兼容 S3 协议的对象存储服务(如 AWS S3、Google Cloud Storage、阿里云 OSS、Cloudflare R2、MinIO 等)
- 📱 简化了 Dart 与 Flutter 应用的存储操作
- 🔌 提供一致的 API 接口,便于跨平台存储集成
- ⬆️ 支持文件上传、下载、删除等常见操作

Expand All @@ -21,8 +21,8 @@
dependencies:
s3_storage:
git:
url: https://github.com/halifox/flutter_s3_storage
ref: 1.0.6
url: https://github.com/halifox/dart_s3_storage
ref: 1.0.7

```

Expand All @@ -32,10 +32,10 @@ dependencies:

```dart
final s3_storage = S3Storage(
endPoint: 's3.amazonaws.com', //'${Account_ID}.r2.cloudflarestorage.com'
endPoint: 's3.amazonaws.com', //'${Account_ID}.r2.cloudflarestorage.com'
accessKey: 'Access Key ID',
secretKey: 'Secret Access Key',
signingType: SigningType.V4, // or SigningType.V2
signingType: SigningType.V4, // SigningType.V2
);
```

Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: s3_storage
description: flutter_s3_storage
version: 1.0.6
homepage: https://github.com/halifox/flutter_s3_storage
issue_tracker: https://github.com/halifox/flutter_s3_storage
description: dart_s3_storage
version: 1.0.7
homepage: https://github.com/halifox/dart_s3_storage
issue_tracker: https://github.com/halifox/dart_s3_storage

environment:
sdk: 3.6.0
Expand Down

0 comments on commit 49c3932

Please sign in to comment.