googledrivehandler 0.0.3 copy "googledrivehandler: ^0.0.3" to clipboard
googledrivehandler: ^0.0.3 copied to clipboard

A package for viewing, browsing, searching, downloading and uploading Google Drive files.

example/lib/main.dart

import 'dart:io';

import 'package:flutter/material.dart';
import 'package:googledrivehandler/googledrivehandler.dart';

void main(List<String> args) async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(
    const GoogleDriveHandlerExampleApp(),
  );
}

class GoogleDriveHandlerExampleApp extends StatelessWidget {
  const GoogleDriveHandlerExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: MainScreen(),
    );
  }
}

class MainScreen extends StatelessWidget {
  MainScreen({super.key});
  String APIKEY = "YOUR_GOOGLE_DRIVE_API_KEY";

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text(
          "GoogleDriveHandlerExampleApp",
        ),
        centerTitle: true,
      ),
      body: SizedBox(
        width: MediaQuery.of(context).size.width,
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          crossAxisAlignment: CrossAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () async {
                GoogleDriveHandler().setAPIKey(
                  APIKey: APIKEY,
                );
                File? myFile = await GoogleDriveHandler()
                    .getFileFromGoogleDrive(context: context);
                if (myFile != null) {
                  //Do something with the file
                } else {
                  //Discard...
                }
              },
              child: const Text(
                "Get file from google drive",
              ),
            ),
          ],
        ),
      ),
    );
  }
}
29
likes
0
pub points
80%
popularity

Publisher

unverified uploader

A package for viewing, browsing, searching, downloading and uploading Google Drive files.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

firebase_auth, firebase_core, flutter, google_sign_in, googleapis, http, path_provider

More

Packages that depend on googledrivehandler