flutter_onedrive 1.0.0-alpha.1
flutter_onedrive: ^1.0.0-alpha.1 copied to clipboard
Upload/download files to/from onedrive
TODO: Put a short description of the package here that helps potential users know whether this package might be useful for them.
Features #
- Download files from onedrive
- Upload files to onedrive
Getting started #
import 'package:flutter_onedrive/flutter_onedrive.dart';
Usage #
final onedrive = OneDrive(callbackSchema: "your callback schema", clientID: "your client id");
final success = await onedrive.connect();
if (success) {
// Download files
final txtBytes = await onedrive.pull("/xxx/xxx.txt");
// Upload files
await onedrive.push(txtBytes!, "/xxx/xxx.txt");
}