flutter_amazon_s3 0.1.2 copy "flutter_amazon_s3: ^0.1.2" to clipboard
flutter_amazon_s3: ^0.1.2 copied to clipboard

discontinued

A flutter plugin for using Amazon S3 service.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin amazon s3'),
        ),
        body: Center(
          child: Text('Will be implemented'),
        ),
      ),
    );
  }
}
9
likes
30
pub points
25%
popularity

Publisher

unverified uploader

A flutter plugin for using Amazon S3 service.

Homepage

License

AGPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_amazon_s3