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'),
        ),
      ),
    );
  }
}
copied to clipboard
9
likes
30
points
69
downloads

Publisher

verified publisherdip.dev

Weekly Downloads

2024.09.16 - 2025.03.31

A flutter plugin for using Amazon S3 service.

Homepage

License

AGPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on flutter_amazon_s3